Package org.apache.flink.table.factories
Interface WorkflowSchedulerFactory.Context
-
- All Known Implementing Classes:
WorkflowSchedulerFactoryUtil.DefaultWorkflowSchedulerContext
- Enclosing interface:
- WorkflowSchedulerFactory
@PublicEvolving public static interface WorkflowSchedulerFactory.ContextContext provided when a workflow scheduler is created.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description org.apache.flink.configuration.ReadableConfiggetConfiguration()Gives the config option to createWorkflowScheduler.Map<String,String>getWorkflowSchedulerOptions()Returns the options with which the workflow scheduler is created.
-
-
-
Method Detail
-
getConfiguration
org.apache.flink.configuration.ReadableConfig getConfiguration()
Gives the config option to createWorkflowScheduler.
-
getWorkflowSchedulerOptions
Map<String,String> getWorkflowSchedulerOptions()
Returns the options with which the workflow scheduler is created. All options that are prefixed with the workflow scheduler identifier are included in the map.All the keys in the options are pruned with the prefix. For example, the option
workflow-scheduler.airflow.endpoint's key isendpointin the map.An implementation should perform validation of these options.
-
-