Class OperatorAttributesBuilder
- java.lang.Object
-
- org.apache.flink.streaming.api.operators.OperatorAttributesBuilder
-
@Experimental public class OperatorAttributesBuilder extends Object
The builder class forOperatorAttributes.
-
-
Constructor Summary
Constructors Constructor Description OperatorAttributesBuilder()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description OperatorAttributesbuild()OperatorAttributesBuildersetInternalSorterSupported(boolean internalSorterSupported)OperatorAttributesBuildersetOutputOnlyAfterEndOfStream(boolean outputOnlyAfterEndOfStream)Set to true if and only if the operator only emits records after all its inputs have ended.
-
-
-
Method Detail
-
setOutputOnlyAfterEndOfStream
public OperatorAttributesBuilder setOutputOnlyAfterEndOfStream(boolean outputOnlyAfterEndOfStream)
Set to true if and only if the operator only emits records after all its inputs have ended. If it is not set, the default value false is used.
-
setInternalSorterSupported
public OperatorAttributesBuilder setInternalSorterSupported(boolean internalSorterSupported)
-
build
public OperatorAttributes build()
-
-