93949596979899
public FutureEnd() { this._promise = Promise.<ImArray<T>>apply(); this._stopped = false; this._counter = new AtomicInt(); this._ended = false; this._yielded = new AtomicBool(); }
71727374757677
public FutureVoidEnd() { this._promise = Promise.<Void>apply(); this._stopped = false; this._counter = new AtomicInt(); this._ended = false; this._yielded = new AtomicBool(); }
99100101102103104105106107
public boolean isEmpty() { return this._queue.isEmpty(); } public Mailbox() { this._stopped = false; this._scheduled = new AtomicBool(); this._queue = new ConcurrentQueue<ActorMessage>(); this._locked = false; }