Interface MasterTriggerRestoreHook.Factory
-
- All Superinterfaces:
Serializable
- Enclosing interface:
- MasterTriggerRestoreHook<T>
public static interface MasterTriggerRestoreHook.Factory extends Serializable
A factory to instantiate aMasterTriggerRestoreHook
.The hooks are defined when creating the streaming dataflow graph and are attached to the job graph, which gets sent to the cluster for execution. To avoid having to make the hook implementation serializable, a serializable hook factory is actually attached to the job graph instead of the hook implementation itself.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <V> MasterTriggerRestoreHook<V>
create()
Instantiates theMasterTriggerRestoreHook
.
-
-
-
Method Detail
-
create
<V> MasterTriggerRestoreHook<V> create()
Instantiates theMasterTriggerRestoreHook
.
-
-