Enum DeliveryMode
NCache provides a DeliveryOption enum which specifies how the message should be delivered to any registered subscribers. The delivery option is specified during message publishing phase.
Assembly: Alachisoft.NCache.Runtime.dll
Syntax
public enum DeliveryMode
Fields
Name | Description |
---|---|
Async | Async invocation of messages. Using async method of delivery does not guarantee the ordered delivery of messages. |
Sync | Sync invocation of messages. Using sync method of delivery guarantees the ordered delivery of messages. |