T
- value typepublic abstract class StreamingGatherLink<T> extends StreamingTLinkImpl<java.util.Iterator<Tuple<java.lang.Integer,T>>,T>
Modifier and Type | Method and Description |
---|---|
<O> SComputeTSet<O,java.util.Iterator<Tuple<java.lang.Integer,T>>> |
flatmap(FlatMapFunc<O,T> mapFn)
Performs flat map operation based on the
FlatMapFunc provided |
void |
forEach(ApplyFunc<T> applyFunction)
Applies a function elementwise.
|
<O> SComputeTSet<O,java.util.Iterator<Tuple<java.lang.Integer,T>>> |
map(MapFunc<O,T> mapFn)
Performs elementwise map operation based on the
MapFunc provided |
<K,V> SKeyedTSet<K,V> |
mapToTuple(MapFunc<Tuple<K,V>,T> genTupleFn)
|
compute, compute, compute, compute, countWindow, countWindow, getTSetEnv, sink, timeWindow, timeWindow
getSchema
addChildToGraph, equals, getId, getName, getSourceParallelism, getTargetParallelism, hashCode, rename, setTSetEnv, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
setName
build, getEdge
generateID, getTBaseGraph
public <O> SComputeTSet<O,java.util.Iterator<Tuple<java.lang.Integer,T>>> map(MapFunc<O,T> mapFn)
TLink
MapFunc
providedO
- output typemapFn
- map function T0 to Opublic <O> SComputeTSet<O,java.util.Iterator<Tuple<java.lang.Integer,T>>> flatmap(FlatMapFunc<O,T> mapFn)
TLink
FlatMapFunc
providedO
- map function to T0 to multiple elements of <O>mapFn
- map function which can produce multiple elements for a single <T0> elementpublic <K,V> SKeyedTSet<K,V> mapToTuple(MapFunc<Tuple<K,V>,T> genTupleFn)
TLink