MsgVpnTopicEndpoint: {
    accessType?: MsgVpnTopicEndpoint.accessType;
    consumerAckPropagationEnabled?: boolean;
    deadMsgQueue?: string;
    deliveryCountEnabled?: boolean;
    deliveryDelay?: number;
    egressEnabled?: boolean;
    eventBindCountThreshold?: EventThreshold;
    eventRejectLowPriorityMsgLimitThreshold?: EventThreshold;
    eventSpoolUsageThreshold?: EventThreshold;
    ingressEnabled?: boolean;
    maxBindCount?: number;
    maxDeliveredUnackedMsgsPerFlow?: number;
    maxMsgSize?: number;
    maxRedeliveryCount?: number;
    maxSpoolUsage?: number;
    maxTtl?: number;
    msgVpnName?: string;
    owner?: string;
    permission?: MsgVpnTopicEndpoint.permission;
    redeliveryEnabled?: boolean;
    rejectLowPriorityMsgEnabled?: boolean;
    rejectLowPriorityMsgLimit?: number;
    rejectMsgToSenderOnDiscardBehavior?: MsgVpnTopicEndpoint.rejectMsgToSenderOnDiscardBehavior;
    respectMsgPriorityEnabled?: boolean;
    respectTtlEnabled?: boolean;
    topicEndpointName?: string;
}

Type declaration

  • Optional accessType?: MsgVpnTopicEndpoint.accessType

    The access type for delivering messages to consumer flows bound to the Topic Endpoint. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is "exclusive". The allowed values and their meaning are:

    "exclusive" - Exclusive delivery of messages to the first bound consumer flow.
    "non-exclusive" - Non-exclusive delivery of messages to all bound consumer flows in a round-robin fashion.
    

    Available since 2.4.

  • Optional consumerAckPropagationEnabled?: boolean

    Enable or disable the propagation of consumer acknowledgements (ACKs) received on the active replication Message VPN to the standby replication Message VPN. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is true.

  • Optional deadMsgQueue?: string

    The name of the Dead Message Queue (DMQ) used by the Topic Endpoint. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is "#DEAD_MSG_QUEUE". Available since 2.2.

  • Optional deliveryCountEnabled?: boolean

    Enable or disable the ability for client applications to query the message delivery count of messages received from the Topic Endpoint. This is a controlled availability feature. Please contact support to find out if this feature is supported for your use case. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is false. Available since 2.19.

  • Optional deliveryDelay?: number

    The delay, in seconds, to apply to messages arriving on the Topic Endpoint before the messages are eligible for delivery. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is 0. Available since 2.22.

  • Optional egressEnabled?: boolean

    Enable or disable the transmission of messages from the Topic Endpoint. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is false.

  • Optional eventBindCountThreshold?: EventThreshold
  • Optional eventRejectLowPriorityMsgLimitThreshold?: EventThreshold
  • Optional eventSpoolUsageThreshold?: EventThreshold
  • Optional ingressEnabled?: boolean

    Enable or disable the reception of messages to the Topic Endpoint. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is false.

  • Optional maxBindCount?: number

    The maximum number of consumer flows that can bind to the Topic Endpoint. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is 1. Available since 2.4.

  • Optional maxDeliveredUnackedMsgsPerFlow?: number

    The maximum number of messages delivered but not acknowledged per flow for the Topic Endpoint. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is 10000.

  • Optional maxMsgSize?: number

    The maximum message size allowed in the Topic Endpoint, in bytes (B). Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is 10000000.

  • Optional maxRedeliveryCount?: number

    The maximum number of times the Topic Endpoint will attempt redelivery of a message prior to it being discarded or moved to the DMQ. A value of 0 means to retry forever. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is 0.

  • Optional maxSpoolUsage?: number

    The maximum message spool usage allowed by the Topic Endpoint, in megabytes (MB). A value of 0 only allows spooling of the last message received and disables quota checking. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is 5000.

  • Optional maxTtl?: number

    The maximum time in seconds a message can stay in the Topic Endpoint when respectTtlEnabled is "true". A message expires when the lesser of the sender assigned time-to-live (TTL) in the message and the maxTtl configured for the Topic Endpoint, is exceeded. A value of 0 disables expiry. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is 0.

  • Optional msgVpnName?: string

    The name of the Message VPN.

  • Optional owner?: string

    The Client Username that owns the Topic Endpoint and has permission equivalent to "delete". Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is "".

  • Optional permission?: MsgVpnTopicEndpoint.permission

    The permission level for all consumers of the Topic Endpoint, excluding the owner. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is "no-access". The allowed values and their meaning are:

    "no-access" - Disallows all access.
    "read-only" - Read-only access to the messages.
    "consume" - Consume (read and remove) messages.
    "modify-topic" - Consume messages or modify the topic/selector.
    "delete" - Consume messages, modify the topic/selector or delete the Client created endpoint altogether.
    
  • Optional redeliveryEnabled?: boolean

    Enable or disable message redelivery. When enabled, the number of redelivery attempts is controlled by maxRedeliveryCount. When disabled, the message will never be delivered from the topic-endpoint more than once. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is true. Available since 2.18.

  • Optional rejectLowPriorityMsgEnabled?: boolean

    Enable or disable the checking of low priority messages against the rejectLowPriorityMsgLimit. This may only be enabled if rejectMsgToSenderOnDiscardBehavior does not have a value of "never". Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is false.

  • Optional rejectLowPriorityMsgLimit?: number

    The number of messages of any priority in the Topic Endpoint above which low priority messages are not admitted but higher priority messages are allowed. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is 0.

  • Optional rejectMsgToSenderOnDiscardBehavior?: MsgVpnTopicEndpoint.rejectMsgToSenderOnDiscardBehavior

    Determines when to return negative acknowledgements (NACKs) to sending clients on message discards. Note that NACKs cause the message to not be delivered to any destination and Transacted Session commits to fail. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is "never". The allowed values and their meaning are:

    "always" - Always return a negative acknowledgment (NACK) to the sending client on message discard.
    "when-topic-endpoint-enabled" - Only return a negative acknowledgment (NACK) to the sending client on message discard when the Topic Endpoint is enabled.
    "never" - Never return a negative acknowledgment (NACK) to the sending client on message discard.
    
  • Optional respectMsgPriorityEnabled?: boolean

    Enable or disable the respecting of message priority. When enabled, messages contained in the Topic Endpoint are delivered in priority order, from 9 (highest) to 0 (lowest). Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is false. Available since 2.8.

  • Optional respectTtlEnabled?: boolean

    Enable or disable the respecting of the time-to-live (TTL) for messages in the Topic Endpoint. When enabled, expired messages are discarded or moved to the DMQ. Changes to this attribute are synchronized to HA mates and replication sites via config-sync. The default value is false.

  • Optional topicEndpointName?: string

    The name of the Topic Endpoint.