SimpleDispatcherActivitySenderBehaviour Enumeration
Used for controlling the behavior of this activity.
Namespace: Scanjour.Workflow4.ActivityLibraryAssembly: Scanjour.Workflow4.ActivityLibrary_24.4.0.0 (in Scanjour.Workflow4.ActivityLibrary_24.4.0.0.dll) Version: 24.4.0.0 (24.4.0.0)
public enum SenderBehaviour
Public Enumeration SenderBehaviour
public enum class SenderBehaviour
DoNothing | 0 |
The activity will retrieve a sender, but will not use it for sending messages nor for getting the message state.
This is for test purposes only.
|
SendMessage | 1 |
The activity will retrieve a sender, and will ask the sender to send the message. The activity will not ask the sender to
retrieve the message state.
/// This is for test purposes only.
|
GetMessageState | 2 |
The activity will retrieve a sender, but will not ask the sender to send the message. The activity will ask the sender to
retrieve the message state.
This is used when the previous message state request returned an incomplete state.
|
SendMessageAndGetMessageState | 3 |
The activity will retrieve a sender, and will ask the sender to send the message. The activity will then ask the sender to
retrieve the message state.
|