Package org.apache.flink.table.factories
Interface WorkflowSchedulerFactory
-
- All Superinterfaces:
Factory
@PublicEvolving public interface WorkflowSchedulerFactory extends Factory
A factory to create aWorkflowSchedulerinstance.See
Factoryfor more information about the general design of a factory.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static interfaceWorkflowSchedulerFactory.ContextContext provided when a workflow scheduler is created.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowScheduler<?>createWorkflowScheduler(WorkflowSchedulerFactory.Context context)Create a workflow scheduler instance which interacts with external scheduler service.-
Methods inherited from interface org.apache.flink.table.factories.Factory
factoryIdentifier, optionalOptions, requiredOptions
-
-
-
-
Method Detail
-
createWorkflowScheduler
WorkflowScheduler<?> createWorkflowScheduler(WorkflowSchedulerFactory.Context context)
Create a workflow scheduler instance which interacts with external scheduler service.
-
-