Package org.apache.wayang.flink.channels
Class DataSetChannel.Instance
- java.lang.Object
-
- org.apache.wayang.core.util.AbstractReferenceCountable
-
- org.apache.wayang.core.platform.ExecutionResourceTemplate
-
- org.apache.wayang.core.platform.AbstractChannelInstance
-
- org.apache.wayang.flink.channels.DataSetChannel.Instance
-
- All Implemented Interfaces:
ChannelInstance,ExecutionResource,ReferenceCountable
- Enclosing class:
- DataSetChannel
public class DataSetChannel.Instance extends AbstractChannelInstance
ChannelInstanceimplementation forDataSets.
-
-
Constructor Summary
Constructors Constructor Description Instance(FlinkExecutor executor, OptimizationContext.OperatorContext producerOperatorContext, int producerOutputIndex)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaccept(org.apache.flink.api.java.DataSet dataSet, FlinkExecutor flinkExecutor)protected voiddoDispose()Performs the actual disposing work of this instance.DataSetChannelgetChannel()java.util.OptionalLonggetMeasuredCardinality()Optionally provides the measured cardinality of this instance.<T> org.apache.flink.api.java.DataSet<T>provideDataSet()-
Methods inherited from class org.apache.wayang.core.platform.AbstractChannelInstance
getLineage, getProducerOperatorContext, markProduced, setMeasuredCardinality, toString, wasProduced
-
Methods inherited from class org.apache.wayang.core.platform.ExecutionResourceTemplate
dispose, disposeUnreferenced
-
Methods inherited from class org.apache.wayang.core.util.AbstractReferenceCountable
disposeIfUnreferenced, getNumReferences, isDisposed, noteDiscardedReference, noteObtainedReference
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.apache.wayang.core.platform.ChannelInstance
isMarkedForInstrumentation
-
Methods inherited from interface org.apache.wayang.core.platform.ExecutionResource
dispose
-
Methods inherited from interface org.apache.wayang.core.util.ReferenceCountable
disposeIfUnreferenced, getNumReferences, isDisposed, noteDiscardedReference, noteObtainedReference
-
-
-
-
Constructor Detail
-
Instance
public Instance(FlinkExecutor executor, OptimizationContext.OperatorContext producerOperatorContext, int producerOutputIndex)
-
-
Method Detail
-
accept
public void accept(org.apache.flink.api.java.DataSet dataSet, FlinkExecutor flinkExecutor)
-
provideDataSet
public <T> org.apache.flink.api.java.DataSet<T> provideDataSet()
-
doDispose
protected void doDispose()
Description copied from class:ExecutionResourceTemplatePerforms the actual disposing work of this instance.- Specified by:
doDisposein classExecutionResourceTemplate
-
getMeasuredCardinality
public java.util.OptionalLong getMeasuredCardinality()
Description copied from interface:ChannelInstanceOptionally provides the measured cardinality of this instance. However, such a cardinality might not be available for several reasons. For instance, the measurement might not have been requested or could not be implemented by the executingPlatform.- Specified by:
getMeasuredCardinalityin interfaceChannelInstance- Overrides:
getMeasuredCardinalityin classAbstractChannelInstance- Returns:
- the measured cardinality if available
-
getChannel
public DataSetChannel getChannel()
- Returns:
- the
Channelthat is implemented by this instance
-
-