Interface ExecutionMessageCallback
-
- All Known Subinterfaces:
ExecutionMessageRespondingCallback
- All Known Implementing Classes:
ExecutionMessageNotificationRestStub,ExecutionMessageNotificationSseStub
public interface ExecutionMessageCallbackThis is a simplified callback for execution messages. It does not require any data via the callback. Replies are expected viaRemoteRuntimeEnvironmentWebService.replyMessage(de.aristaflow.ilm.base.sessionmanagement.SessionToken, de.aristaflow.ilm.model.runtimeenvironment.messages.execution.ReplyMessage).- See Also:
ExecutionMessageNotification
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidnotify(@NotNull @Valid ExecutionMessage message)This does not send the reply directly.
-
-
-
Method Detail
-
notify
void notify(@NotNull @Valid @NotNull @Valid ExecutionMessage message)This does not send the reply directly. The reply has to be provided viaRemoteRuntimeEnvironmentWebService.replyMessage(de.aristaflow.ilm.base.sessionmanagement.SessionToken, de.aristaflow.ilm.model.runtimeenvironment.messages.execution.ReplyMessage).
You should use the very sameExecutionMessageinstance provided here when replying. Just set thereplybeforehand.
-
-