| Interface | Description |
|---|---|
| SideEffectPipe<S,T> |
A SideEffectPipe will produce a side effect which can be retrieved by the getSideEffect() method.
|
| SideEffectPipe.GreedySideEffectPipe<S,T> |
Specifies that the SideEffect is ready after Pipe.iterate()
|
| SideEffectPipe.LazySideEffectPipe<S,T> |
Specifies that the SideEffect is ready after each Pipe.next()
|
| Class | Description |
|---|---|
| AggregatePipe<S> |
The AggregatePipe produces a side effect that is the provided Collection filled with the contents of all the objects that have passed through it.
|
| CountPipe<S> |
The CountPipe produces a side effect that is the total number of objects that have passed through it.
|
| GroupByPipe<S,K,V> | |
| GroupByReducePipe<S,K,V,V2> | |
| GroupCountFunctionPipe<S,K> |
GroupCountFunctionPipe is analogous to GroupCountPipe save that it takes two optional functions.
|
| GroupCountPipe<S> |
The GroupCountPipe will simply emit the incoming object, but generate a map side effect.
|
| LinkPipe |
LinkPipe supports the creation of an edge between the current vertex in the pipe and some other vertex.
|
| OptionalPipe<S> |
OptionalPipe will compute the incoming object within the internal pipe.
|
| SideEffectFunctionPipe<S> |
SideEffectFunctionPipe will emit the incoming object, but compute the PipeFunction on S.
|
| StorePipe<S> |
The StoragePipe yields its input, however, each input is added to the provided collection.
|
| TablePipe<S> | |
| TreePipe<S> |
Copyright © 2010-2014. All Rights Reserved.