Interface PauseConnectorCallback
-
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
@FunctionalInterface public interface PauseConnectorCallback
Callback called during thePauseConnectorHandlerexecution, may be used to provide custom pausing logic.Default implementation of this callback calls the
PUBLIC.PAUSE_CONNECTOR_INTERNALprocedure.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ConnectorResponseexecute()Executes the callback logic.
-
-
-
Method Detail
-
execute
ConnectorResponse execute()
Executes the callback logic.- Returns:
- a response with the code
OKif the execution was successful, a response with the codeROLLBACKif the callback performed a rollback operation, or a response with an error code and an error message
-
-