public class SComputeTSet<O,I> extends StreamingTSetImpl<O>
BaseTSet.StateType
Constructor and Description |
---|
SComputeTSet(StreamingEnvironment tSetEnv,
ComputeCollectorFunc<O,I> compOp,
int parallelism,
Schema inputSchema) |
SComputeTSet(StreamingEnvironment tSetEnv,
ComputeFunc<O,I> computeFunction,
int parallelism,
Schema inputSchema) |
SComputeTSet(StreamingEnvironment tSetEnv,
java.lang.String name,
ComputeCollectorFunc<O,I> compOp,
int parallelism,
Schema inputSchema) |
SComputeTSet(StreamingEnvironment tSetEnv,
java.lang.String name,
ComputeFunc<O,I> computeFunction,
int parallelism,
Schema inputSchema) |
Modifier and Type | Method and Description |
---|---|
ICompute<I> |
getINode() |
SComputeTSet<O,I> |
setName(java.lang.String name)
Sets the name
|
SComputeTSet<O,I> |
withSchema(Schema schema)
Sets the data type of the
TSet output. |
allGather, allReduce, direct, gather, getTSetEnv, mapToTuple, partition, partition, reduce, replicate, union, union
getInputSchema, getOutputSchema, setOutputSchema
addChildToGraph, addChildToGraph, equals, getId, getInputs, getName, getParallelism, getStateType, hashCode, isMutable, rename, setMutable, setStateType, setTSetEnv, toString
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
build
generateID, getTBaseGraph
public SComputeTSet(StreamingEnvironment tSetEnv, ComputeFunc<O,I> computeFunction, int parallelism, Schema inputSchema)
public SComputeTSet(StreamingEnvironment tSetEnv, ComputeCollectorFunc<O,I> compOp, int parallelism, Schema inputSchema)
public SComputeTSet(StreamingEnvironment tSetEnv, java.lang.String name, ComputeFunc<O,I> computeFunction, int parallelism, Schema inputSchema)
public SComputeTSet(StreamingEnvironment tSetEnv, java.lang.String name, ComputeCollectorFunc<O,I> compOp, int parallelism, Schema inputSchema)
public SComputeTSet<O,I> setName(java.lang.String name)
TSet
public SComputeTSet<O,I> withSchema(Schema schema)
TSet
TSet
output. This will be used in the packers for efficient
SER-DE operations in the following TLink
swithSchema
in interface TSet<O>
withSchema
in class StreamingTSetImpl<O>
schema
- data type as a MessageType
TSet