Interface OrchestrationWarningCallback
-
public interface OrchestrationWarningCallback
TheOrchestrationWarningCallback
interface defines the callback that must be implemented in order to be informed of warnings during theOrchestrator
lifecycle.It is the main way for the
Orchestrator
to report warnings. It is optional and can be provided to theOrchestrator.Builder
viaOrchestrator.Builder.setWarningCallback(OrchestrationWarningCallback)
.
TheOrchestrationWarningCallback
used by theOrchestrator
can also be modified during its lifecycle viaOrchestrator.setWarningCallback(OrchestrationWarningCallback)
.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onOrchestrationWarning(OrchestrationWarning warning)
callback that will be called when a warning occurs
-
-
-
Method Detail
-
onOrchestrationWarning
void onOrchestrationWarning(OrchestrationWarning warning)
callback that will be called when a warning occurs- Parameters:
warning
- warning to be returned
-
-