Version: 10.16.0
Namespace

solace.MessageDeliveryModeType

Contents

namespace solace.MessageDeliveryModeType

Represents an enumeration of message delivery modes.

Static Properties & Enumerations Top

number DIRECT
number NON_PERSISTENT = 2
number PERSISTENT = 1

Static Properties & Enumerations Detail Top

static public number DIRECT

This mode provides at-most-once message delivery. Direct messages have the following characteristics:

Direct messages are most appropriate for messaging applications that require very high-rate or very low-latency message transmission. Direct Messaging enables applications to efficiently publish messages to a large number of clients with matching subscriptions.

static public number NON_PERSISTENT = 2

This mode is functionally the same as Persistent. It exists to facilitate interaction with JMS applications. In most situations where you want to use Guaranteed Messaging, it is recommended that you use solace.MessageDeliveryModeType.PERSISTENT.

static public number PERSISTENT = 1

A Persistent delivery mode is used for Guaranteed Messaging, and this delivery mode is most appropriate for applications that require persistent storage of the messages they send or intend to receive. Persistent messages have the following characteristics:

Persistent messages are most appropriate for applications that require persistent storage of the messages they send or intend to receive.