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, timeWindowgetSchemaaddChildToGraph, equals, getId, getName, getSourceParallelism, getTargetParallelism, hashCode, rename, setTSetEnv, toStringclone, finalize, getClass, notify, notifyAll, wait, wait, waitsetNamebuild, getEdgegenerateID, getTBaseGraphpublic <O> SComputeTSet<O,java.util.Iterator<Tuple<java.lang.Integer,T>>> map(MapFunc<O,T> mapFn)
TLinkMapFunc providedO - output typemapFn - map function T0 to Opublic <O> SComputeTSet<O,java.util.Iterator<Tuple<java.lang.Integer,T>>> flatmap(FlatMapFunc<O,T> mapFn)
TLinkFlatMapFunc 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