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 via
RemoteRuntimeEnvironmentWebService.replyMessage(de.aristaflow.ilm.base.sessionmanagement.SessionToken, de.aristaflow.ilm.model.runtimeenvironment.messages.execution.ReplyMessage).- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionvoidnotify(@NotNull @Valid ExecutionMessage message) This does not send the reply directly.
-
Method Details
-
notify
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.
-