Package org.globus.workspace.client_core.utils

Examples of org.globus.workspace.client_core.utils.LatchWaiter


    // -------------------------------------------------------------------------
    // Launch threads
    // -------------------------------------------------------------------------

    private void launchStateWaiter() {
        final LatchWaiter waiter = new LatchWaiter(this.getTargetLatch(),
                                                   this.exitLatch);
        this.targetWaiter = new FutureTask(waiter);
        this.executor.submit(this.targetWaiter);
    }
View Full Code Here


        this.targetWaiter = new FutureTask(waiter);
        this.executor.submit(this.targetWaiter);
    }

    private void launchTerminationWaiter() {
        final LatchWaiter waiter = new LatchWaiter(this.getTerminationLatch(),
                                                   this.exitLatch);
        this.terminationWaiter = new FutureTask(waiter);
        this.executor.submit(this.terminationWaiter);
    }
View Full Code Here

TOP

Related Classes of org.globus.workspace.client_core.utils.LatchWaiter

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.