Package groovyx.gpars.dataflow.impl

Examples of groovyx.gpars.dataflow.impl.ResizeableCountDownLatch


     * Creates a new variable blocking the specified number of readers.
     *
     * @param parties Number of readers that have to match a writer before the message gets transferred
     */
    public SyncDataflowVariable(final int parties) {
        this.parties = new ResizeableCountDownLatch(parties);
    }
View Full Code Here

TOP

Related Classes of groovyx.gpars.dataflow.impl.ResizeableCountDownLatch

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.