Uses of Interface
org.apache.flink.streaming.api.operators.OneInputStreamOperator
-
-
Uses of OneInputStreamOperator in org.apache.flink.runtime.asyncprocessing.operators
Classes in org.apache.flink.runtime.asyncprocessing.operators that implement OneInputStreamOperator Modifier and Type Class Description classAsyncKeyedProcessOperator<K,IN,OUT>AStreamOperatorfor executingKeyedProcessFunctionwith async state processing.classAsyncStreamFlatMap<IN,OUT>AAbstractAsyncStateStreamOperatorfor executingFlatMapFunctions. -
Uses of OneInputStreamOperator in org.apache.flink.runtime.asyncprocessing.operators.windowing
Classes in org.apache.flink.runtime.asyncprocessing.operators.windowing that implement OneInputStreamOperator Modifier and Type Class Description classAsyncEvictingWindowOperator<K,IN,OUT,W extends Window>AAsyncWindowOperatorthat also allows anEvictorto be used.classAsyncWindowOperator<K,IN,ACC,OUT,W extends Window>An operator that implements the logic for windowing based on aWindowAssignerandAsyncTrigger. -
Uses of OneInputStreamOperator in org.apache.flink.streaming.api.datastream
Methods in org.apache.flink.streaming.api.datastream with parameters of type OneInputStreamOperator Modifier and Type Method Description <R> SingleOutputStreamOperator<R>DataStream. transform(String operatorName, org.apache.flink.api.common.typeinfo.TypeInformation<R> outTypeInfo, OneInputStreamOperator<T,R> operator)Method for passing user defined operators along with the type information that will transform the DataStream. -
Uses of OneInputStreamOperator in org.apache.flink.streaming.api.functions.query
Classes in org.apache.flink.streaming.api.functions.query that implement OneInputStreamOperator Modifier and Type Class Description classQueryableAppendingStateOperator<IN>Internal operator handling queryable AppendingState instances.classQueryableValueStateOperator<IN>Internal operator handling queryable ValueState instances. -
Uses of OneInputStreamOperator in org.apache.flink.streaming.api.functions.source
Classes in org.apache.flink.streaming.api.functions.source that implement OneInputStreamOperator Modifier and Type Class Description classContinuousFileReaderOperator<OUT,T extends TimestampedInputSplit>The operator that reads thesplitsreceived from the precedingContinuousFileMonitoringFunction. -
Uses of OneInputStreamOperator in org.apache.flink.streaming.api.operators
Classes in org.apache.flink.streaming.api.operators that implement OneInputStreamOperator Modifier and Type Class Description classBatchGroupedReduceOperator<IN,KEY>AStreamOperatorfor executing aReduceFunctionon aKeyedStreamin aRuntimeExecutionMode.BATCHmode.classKeyedProcessOperator<K,IN,OUT>AStreamOperatorfor executingKeyedProcessFunctions.classLegacyKeyedProcessOperator<K,IN,OUT>Deprecated.Replaced byKeyedProcessOperatorwhich takesKeyedProcessFunctionclassMapPartitionOperator<IN,OUT>TheMapPartitionOperatoris used to process all records in each partition on non-keyed stream.classPartitionAggregateOperator<IN,ACC,OUT>ThePartitionAggregateOperatoris used to apply the aggregate transformation on all records of each partition.classPartitionReduceOperator<IN>ThePartitionReduceOperatoris used to apply the reduce transformation on all records of each partition.classProcessOperator<IN,OUT>AStreamOperatorfor executingProcessFunctions.classStreamFilter<IN>AStreamOperatorfor executingFilterFunctions.classStreamFlatMap<IN,OUT>AStreamOperatorfor executingFlatMapFunctions.classStreamGroupedReduceAsyncStateOperator<IN>classStreamGroupedReduceOperator<IN>classStreamMap<IN,OUT>AStreamOperatorfor executingMapFunctions.classStreamProject<IN,OUT extends org.apache.flink.api.java.tuple.Tuple>AStreamOperatorfor executing projections on streams.classStreamSink<IN>AStreamOperatorfor executingSinkFunctions. -
Uses of OneInputStreamOperator in org.apache.flink.streaming.api.operators.collect
Classes in org.apache.flink.streaming.api.operators.collect that implement OneInputStreamOperator Modifier and Type Class Description classCollectSinkOperator<IN>AStreamSinkthat collects query results and sends them back to the client. -
Uses of OneInputStreamOperator in org.apache.flink.streaming.api.operators.sortpartition
Classes in org.apache.flink.streaming.api.operators.sortpartition that implement OneInputStreamOperator Modifier and Type Class Description classKeyedSortPartitionOperator<INPUT,KEY>TheKeyedSortPartitionOperatorsorts records of a partition onKeyedStream.classSortPartitionOperator<INPUT>TheSortPartitionOperatorsorts records of a partition on non-keyed data stream. -
Uses of OneInputStreamOperator in org.apache.flink.streaming.api.transformations
Methods in org.apache.flink.streaming.api.transformations that return OneInputStreamOperator Modifier and Type Method Description OneInputStreamOperator<IN,OUT>OneInputTransformation. getOperator()Constructors in org.apache.flink.streaming.api.transformations with parameters of type OneInputStreamOperator Constructor Description OneInputTransformation(org.apache.flink.api.dag.Transformation<IN> input, String name, OneInputStreamOperator<IN,OUT> operator, org.apache.flink.api.common.typeinfo.TypeInformation<OUT> outputType, int parallelism)Creates a newOneInputTransformationfrom the given input and operator.OneInputTransformation(org.apache.flink.api.dag.Transformation<IN> input, String name, OneInputStreamOperator<IN,OUT> operator, org.apache.flink.api.common.typeinfo.TypeInformation<OUT> outputType, int parallelism, boolean parallelismConfigured) -
Uses of OneInputStreamOperator in org.apache.flink.streaming.runtime.operators
Classes in org.apache.flink.streaming.runtime.operators that implement OneInputStreamOperator Modifier and Type Class Description classTimestampsAndWatermarksOperator<T>A stream operator that may do one or both of the following: extract timestamps from events and generate watermarks. -
Uses of OneInputStreamOperator in org.apache.flink.streaming.runtime.operators.sink
Classes in org.apache.flink.streaming.runtime.operators.sink that implement OneInputStreamOperator Modifier and Type Class Description classGlobalCommitterOperator<CommT,GlobalCommT>Implements theGlobalCommitter. -
Uses of OneInputStreamOperator in org.apache.flink.streaming.runtime.operators.windowing
Classes in org.apache.flink.streaming.runtime.operators.windowing that implement OneInputStreamOperator Modifier and Type Class Description classEvictingWindowOperator<K,IN,OUT,W extends Window>AWindowOperatorthat also allows anEvictorto be used.classWindowOperator<K,IN,ACC,OUT,W extends Window>An operator that implements the logic for windowing based on aWindowAssignerandTrigger.Methods in org.apache.flink.streaming.runtime.operators.windowing that return OneInputStreamOperator Modifier and Type Method Description <ACC,V,R>
OneInputStreamOperator<T,R>WindowOperatorBuilder. aggregate(org.apache.flink.api.common.functions.AggregateFunction<T,ACC,V> aggregateFunction, ProcessWindowFunction<V,R,K,W> windowFunction, org.apache.flink.api.common.typeinfo.TypeInformation<ACC> accumulatorType)<ACC,V,R>
OneInputStreamOperator<T,R>WindowOperatorBuilder. aggregate(org.apache.flink.api.common.functions.AggregateFunction<T,ACC,V> aggregateFunction, WindowFunction<V,R,K,W> windowFunction, org.apache.flink.api.common.typeinfo.TypeInformation<ACC> accumulatorType)<R> OneInputStreamOperator<T,R>WindowOperatorBuilder. apply(WindowFunction<T,R,K,W> function)<ACC,V,R>
OneInputStreamOperator<T,R>WindowOperatorBuilder. asyncAggregate(org.apache.flink.api.common.functions.AggregateFunction<T,ACC,V> aggregateFunction, ProcessWindowFunction<V,R,K,W> windowFunction, org.apache.flink.api.common.typeinfo.TypeInformation<ACC> accumulatorType)<ACC,V,R>
OneInputStreamOperator<T,R>WindowOperatorBuilder. asyncAggregate(org.apache.flink.api.common.functions.AggregateFunction<T,ACC,V> aggregateFunction, WindowFunction<V,R,K,W> windowFunction, org.apache.flink.api.common.typeinfo.TypeInformation<ACC> accumulatorType)<R> OneInputStreamOperator<T,R>WindowOperatorBuilder. asyncApply(WindowFunction<T,R,K,W> function)<R> OneInputStreamOperator<T,R>WindowOperatorBuilder. asyncProcess(ProcessWindowFunction<T,R,K,W> function)<R> OneInputStreamOperator<T,R>WindowOperatorBuilder. asyncReduce(org.apache.flink.api.common.functions.ReduceFunction<T> reduceFunction, ProcessWindowFunction<T,R,K,W> function)<R> OneInputStreamOperator<T,R>WindowOperatorBuilder. asyncReduce(org.apache.flink.api.common.functions.ReduceFunction<T> reduceFunction, WindowFunction<T,R,K,W> function)<R> OneInputStreamOperator<T,R>WindowOperatorBuilder. process(ProcessWindowFunction<T,R,K,W> function)<R> OneInputStreamOperator<T,R>WindowOperatorBuilder. reduce(org.apache.flink.api.common.functions.ReduceFunction<T> reduceFunction, ProcessWindowFunction<T,R,K,W> function)<R> OneInputStreamOperator<T,R>WindowOperatorBuilder. reduce(org.apache.flink.api.common.functions.ReduceFunction<T> reduceFunction, WindowFunction<T,R,K,W> function) -
Uses of OneInputStreamOperator in org.apache.flink.streaming.runtime.translators
Classes in org.apache.flink.streaming.runtime.translators that implement OneInputStreamOperator Modifier and Type Class Description static classCacheTransformationTranslator.IdentityStreamOperator<T>TheCacheTransformationTranslator.IdentityStreamOperatoracts as a dummy source to consume cached intermediate dataset.static classCacheTransformationTranslator.NoOpStreamOperator<T>TheCacheTransformationTranslator.NoOpStreamOperatoracts as a dummy sink so that the upstream can produce the intermediate dataset to be cached.
-