Package io.debezium.engine
Interface DebeziumEngine.ConnectorCallback
-
- Enclosing interface:
- DebeziumEngine<R>
public static interface DebeziumEngine.ConnectorCallbackCallback function which informs users about the various stages a connector goes through during startup
-
-
Method Summary
All Methods Instance Methods Default Methods Modifier and Type Method Description default voidconnectorStarted()Called after a connector has been successfully started by the engine; i.e.default voidconnectorStopped()Called after a connector has been successfully stopped by the engine; i.e.default voidtaskStarted()Called after a connector task has been successfully started by the engine; i.e.default voidtaskStopped()Called after a connector task has been successfully stopped by the engine; i.e.
-
-
-
Method Detail
-
connectorStarted
default void connectorStarted()
Called after a connector has been successfully started by the engine; i.e.SourceConnector#start(Map)has completed successfully
-
connectorStopped
default void connectorStopped()
Called after a connector has been successfully stopped by the engine; i.e.SourceConnector#stop()has completed successfully
-
taskStarted
default void taskStarted()
Called after a connector task has been successfully started by the engine; i.e.SourceTask#start(Map)has completed successfully
-
taskStopped
default void taskStopped()
Called after a connector task has been successfully stopped by the engine; i.e.SourceTask#stop()has completed successfully
-
-