Interface MessageErrorConstants


  • public interface MessageErrorConstants
    A collection of constants listing the different reasons why a message can be sent to a DMQ.
    • Field Summary

      Fields 
      Modifier and Type Field Description
      static short ADMIN_DELETED
      If the message has been deleted by an admin request.
      static short DELETED_DEST
      If the target destination of the message could not be found.
      static short EXPIRED
      If the message expired before delivery.
      static short INTERCEPTORS
      If an interceptors error happened.
      static short NOT_ALLOWED
      If the client tried to work with some entity in a manner that is prohibited by the server
      static short NOT_WRITEABLE
      If the target destination of the message did not accept the sender as a WRITER.
      static short QUEUE_FULL
      If the queue has reached its max number of messages.
      static short UNDELIVERABLE
      If the number of delivery attempts of the message overtook the threshold.
      static short UNEXPECTED_ERROR
      If an unexpected error happened during delivery.
    • Field Detail

      • EXPIRED

        static final short EXPIRED
        If the message expired before delivery.
        See Also:
        Constant Field Values
      • NOT_WRITEABLE

        static final short NOT_WRITEABLE
        If the target destination of the message did not accept the sender as a WRITER.
        See Also:
        Constant Field Values
      • UNDELIVERABLE

        static final short UNDELIVERABLE
        If the number of delivery attempts of the message overtook the threshold.
        See Also:
        Constant Field Values
      • ADMIN_DELETED

        static final short ADMIN_DELETED
        If the message has been deleted by an admin request.
        See Also:
        Constant Field Values
      • DELETED_DEST

        static final short DELETED_DEST
        If the target destination of the message could not be found.
        See Also:
        Constant Field Values
      • QUEUE_FULL

        static final short QUEUE_FULL
        If the queue has reached its max number of messages.
        See Also:
        Constant Field Values
      • UNEXPECTED_ERROR

        static final short UNEXPECTED_ERROR
        If an unexpected error happened during delivery.
        See Also:
        Constant Field Values
      • INTERCEPTORS

        static final short INTERCEPTORS
        If an interceptors error happened.
        See Also:
        Constant Field Values
      • NOT_ALLOWED

        static final short NOT_ALLOWED
        If the client tried to work with some entity in a manner that is prohibited by the server
        See Also:
        Constant Field Values