Package groovyx.gpars.dataflow

Examples of groovyx.gpars.dataflow.DataflowWriteChannel


     * @param values Values to send to output channels of the same position index
     */
    public final void bindAllOutputValues(final Object... values) {
        final List<DataflowWriteChannel<?>> outputs = getOutputs();
        for (int i = 0; i < outputs.size(); i++) {
            final DataflowWriteChannel channel = outputs.get(i);
            channel.bind(fireMessageSentOut(channel, i, values[i]));
        }
    }
View Full Code Here

TOP

Related Classes of groovyx.gpars.dataflow.DataflowWriteChannel

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.