Interface DebeziumEngine.ConnectorCallback

Enclosing interface:
DebeziumEngine<R>

public static interface DebeziumEngine.ConnectorCallback
Callback function which informs users about the various stages a connector goes through during startup
  • Method Summary

    Modifier and Type
    Method
    Description
    default void
    Called after a connector has been successfully started by the engine; i.e.
    default void
    Called after a connector has been successfully stopped by the engine; i.e.
    default void
    Called after a connector task has been successfully started by the engine; i.e.
    default void
    Called after a connector task has been successfully stopped by the engine; i.e.
  • Method Details

    • 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