Package bbflow
Class ff_comb<T,V> 
java.lang.Object
bbflow.block<T,U>
 
bbflow.ff_node<T,V>
 
bbflow.ff_comb<T,V> 
- Type Parameters:
- T- Custom type of input channels
- V- Custom type of output channels
Combine two nodes (of type ff_node or ff_comb) in one. The combination is linear, first runJob called and the returned value (if returned) is passed to second one. Also init() and EOS() are called when it's time.
- 
Field Summary
- 
Constructor SummaryConstructors
- 
Method SummaryMethods inherited from class bbflow.ff_nodeaddInputChannel, addOutputChannel, getInputChannel, getOutputChannel, join, removeInputChannel, removeOutputChannel, start
- 
Constructor Details- 
ff_combCombine constructor- Parameters:
- node1- first node
- node2- second node
- bufferSize- buffer size of channels
 
- 
ff_combCombine constructor- Parameters:
- node1- first node
- node2- second node
 
 
- 
- 
Method Details- 
preloadpublic static void preload()
- 
combineFunction called by default constructor to combine the 2 nodes- Parameters:
- node1- first node
- node2- second node
- bufferSize- buffersize of channel
 
 
-