Examples of LatchWaiter


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

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

        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
Copyright © 2018 www.massapi.com. 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.