Interface StreamExecutorFactory
-
- All Superinterfaces:
ExecutorFactory
,Factory
- All Known Implementing Classes:
DefaultExecutorFactory
,DelegateExecutorFactory
@Internal public interface StreamExecutorFactory extends ExecutorFactory
Sub interface ofExecutorFactory
to supportDataStream
API.
-
-
Field Summary
-
Fields inherited from interface org.apache.flink.table.delegation.ExecutorFactory
DEFAULT_IDENTIFIER
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Executor
create(StreamExecutionEnvironment streamExecutionEnvironment)
Creates a correspondingExecutor
.-
Methods inherited from interface org.apache.flink.table.delegation.ExecutorFactory
create
-
Methods inherited from interface org.apache.flink.table.factories.Factory
factoryIdentifier, optionalOptions, requiredOptions
-
-
-
-
Method Detail
-
create
Executor create(StreamExecutionEnvironment streamExecutionEnvironment)
Creates a correspondingExecutor
.This method will be used when instantiating a
TableEnvironment
from one of the bridging modules which enables conversion from/toDataStream
API.
-
-