最新の SDK を使用して iOS アプリケーションを開発しておりLinkedBlockingQueue
、Objective-C を使用して実装する必要があります。
私はこのコードのようなことをしなければなりません:
public boolean onEvent(final EventArgs e) {
if (e.getClass() != this.eventType) return false;
long now = android.os.SystemClock.uptimeMillis();
long diff = now - this.last;
final long threadExecutionTimeMs = now - lastThreadExecution;
if (executions.remainingCapacity() == 0)
{
executions.poll();
}
executions.add(threadExecutionTimeMs);
...
}
おそらく使用できますNSMutableArray
が、ブロッキングなどをエミュレートする方法がわかりません。
何かアドバイス?