Package io.debezium.engine
Interface DebeziumEngine.CompletionCallback
-
- Enclosing interface:
- DebeziumEngine<R>
public static interface DebeziumEngine.CompletionCallbackA callback function to be notified when the connector completes.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidhandle(boolean success, String message, Throwable error)Handle the completion of the embedded connector engine.
-
-
-
Method Detail
-
handle
void handle(boolean success, String message, Throwable error)Handle the completion of the embedded connector engine.- Parameters:
success-trueif the connector completed normally, orfalseif the connector produced an error that prevented startup or premature termination.message- the completion message; never nullerror- the error, or null if there was no exception
-
-