Package objd.concurrent

Examples of objd.concurrent.AtomicBool


    public FutureEnd() {
        this._promise = Promise.<ImArray<T>>apply();
        this._stopped = false;
        this._counter = new AtomicInt();
        this._ended = false;
        this._yielded = new AtomicBool();
    }
View Full Code Here


    public FutureVoidEnd() {
        this._promise = Promise.<Void>apply();
        this._stopped = false;
        this._counter = new AtomicInt();
        this._ended = false;
        this._yielded = new AtomicBool();
    }
View Full Code Here

    public boolean isEmpty() {
        return this._queue.isEmpty();
    }
    public Mailbox() {
        this._stopped = false;
        this._scheduled = new AtomicBool();
        this._queue = new ConcurrentQueue<ActorMessage>();
        this._locked = false;
    }
View Full Code Here

TOP

Related Classes of objd.concurrent.AtomicBool

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.