groovyx.gpars.dataflow.operator
Class DataflowOperator

java.lang.Object
  extended by groovyx.gpars.dataflow.operator.DataflowProcessor
      extended by groovyx.gpars.dataflow.operator.DataflowOperator

public final class DataflowOperator
extends DataflowProcessor

Dataflow selectors and operators (processors) form the basic units in dataflow networks. They are typically combined into oriented graphs that transform data. They accept a set of input and output dataflow channels so that once values are available to be consumed in all the input channels the operator's body is triggered on the values, potentially generating values to be written into the output channels. The output channels at the same time are suitable to be used as input channels by some other dataflow processors. The channels allow processors to communicate.

Dataflow selectors and operators enable creation of highly concurrent applications yet the abstraction hides the low-level concurrency primitives and exposes much friendlier API. Since selectors and operators internally leverage the actor implementation, they reuse a pool of threads and so the actual number of threads used by the calculation can be kept much lower than the actual number of processors used in the network.

Author:
Vaclav Pech Date: Sep 9, 2009

Field Summary
 
Fields inherited from class groovyx.gpars.dataflow.operator.DataflowProcessor
actor, INPUTS, listeners, MAX_FORKS, OUTPUTS, STATE_OBJECT, stateObject
 
Constructor Summary
DataflowOperator(PGroup group, java.util.Map channels, groovy.lang.Closure code)
          Creates an operator After creation the operator needs to be started using the start() method.
 
Method Summary
private static java.lang.String countInputChannels(java.util.Map channels)
           
private static boolean verifyChannelParameters(java.util.Map channels, int parameters)
           
 
Methods inherited from class groovyx.gpars.dataflow.operator.DataflowProcessor
addDataflowEventListener, bindAllOutputs, bindAllOutputsAtomically, bindAllOutputValues, bindAllOutputValuesAtomically, bindOutput, bindOutput, extractInputs, extractOutputs, fireAfterRun, fireAfterStart, fireAfterStop, fireBeforeRun, fireControlMessageArrived, fireCustomEvent, fireMessageArrived, fireMessageSentOut, fireOnException, getOutput, getOutputs, getOutputs, getStateObject, checkMaxForks, join, registerChannelListenersToAllInputs, removeDataflowEventListener, reportError, shouldBeMultiThreaded, start, start, terminate, terminateAfterNextRun
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

DataflowOperator

public DataflowOperator(PGroup group,
                        java.util.Map channels,
                        groovy.lang.Closure code)
Creates an operator After creation the operator needs to be started using the start() method.

Parameters:
group - The group the thread pool of which o use
channels - A map specifying "inputs" and "outputs" - dataflow channels (instances of the DataflowQueue or DataflowVariable classes) to use for inputs and outputs
code - The operator's body to run each time all inputs have a value to read
Method Detail

verifyChannelParameters

private static boolean verifyChannelParameters(java.util.Map channels,
                                               int parameters)

countInputChannels

private static java.lang.String countInputChannels(java.util.Map channels)

Copyright © 2008–2012 Václav Pech. All Rights Reserved.