| Interface | Description |
|---|---|
| OneInputStreamOperator<IN,OUT> |
Interface for stream operators with one input.
|
| Output<T> |
A
StreamOperator is supplied with an object
of this interface that can be used to emit elements and other messages, such as barriers
and watermarks, from an operator. |
| OutputTypeConfigurable<OUT> |
Stream operators can implement this interface if they need access to the output type information
at
StreamGraph generation. |
| StreamOperator<OUT> |
Basic interface for stream operators.
|
| TwoInputStreamOperator<IN1,IN2,OUT> |
Interface for stream operators with two inputs.
|
| Class | Description |
|---|---|
| AbstractStreamOperator<OUT> |
Base class for all stream operators.
|
| AbstractUdfStreamOperator<OUT,F extends Function> |
This is used as the base class for operators that have a user-defined
function.
|
| StreamCounter<IN> | |
| StreamFilter<IN> | |
| StreamFlatMap<IN,OUT> | |
| StreamGroupedFold<IN,OUT,KEY> | |
| StreamGroupedReduce<IN> | |
| StreamingRuntimeContext |
Implementation of the
RuntimeContext,
for streaming operators. |
| StreamMap<IN,OUT> | |
| StreamProject<IN,OUT extends org.apache.flink.api.java.tuple.Tuple> | |
| StreamSink<IN> | |
| StreamSource<T> |
StreamOperator for streaming sources. |
| StreamSource.AutomaticWatermarkContext<T> |
SourceFunction.SourceContext to be used for sources with automatic timestamps
and watermark emission. |
| StreamSource.ManualWatermarkContext<T> |
SourceFunction.SourceContext to be used for sources with manual timestamp
assignment and manual watermark emission. |
| StreamSource.NonTimestampContext<T> |
SourceFunction.SourceContext to be used for sources that don't emit watermarks. |
| StreamSource.NonWatermarkContext<T> |
SourceFunction.SourceContext to be used for sources that don't emit watermarks. |
| TimestampedCollector<T> |
| Enum | Description |
|---|---|
| ChainingStrategy |
Defines the chaining scheme for the operator.
|
Copyright © 2014–2016 The Apache Software Foundation. All rights reserved.