![]() |
Orchestration SDK 5.10.1
|
#include <OrchestrationWarningDelegate.h>
Inherits <NSObject>.
Instance Methods | |
(void) | - orchestrationWarning: |
The OrchestrationWarningDelegate
interface defines the delegate that can be implemented in order to be informed of warnings during the OrchestrationProtocol
lifecycle.
It is the main way for the OrchestrationProtocol
to report warnings. It is optional and can be provided to the OrchestratorBuilder
via OrchestratorBuilder#setWarningDelegate:(id<OrchestrationWarningDelegate>)
.
The OrchestrationWarningDelegate
used by the OrchestrationProtocol
can also be modified during its lifecycle via OrchestrationProtocol#setWarningDelegate:(id<OrchestrationWarningDelegate>)
.
- (void) orchestrationWarning: | (OrchestrationWarning *) | warning |
delegate that will be called when an warning occurred
warning | warning to return |