Interface ExecutionMessageCallback
-
- All Known Subinterfaces:
ExecutionMessageRespondingCallback
- All Known Implementing Classes:
ExecutionMessageNotificationRestStub
,ExecutionMessageNotificationSseStub
public interface ExecutionMessageCallback
This 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 void
notify(@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 sameExecutionMessage
instance provided here when replying. Just set thereply
beforehand.
-
-