Class ClientSender

    • Method Detail

      • send

        public Tracker send​(Message<?> message)
                     throws ClientException
        Description copied from interface: Sender
        Send the given message immediately if there is credit available or blocks if the link has not yet been granted credit.
        Specified by:
        send in interface Sender
        Parameters:
        message - the Message to send.
        Returns:
        the Tracker for the message delivery
        Throws:
        ClientException - if an error occurs while initiating the send operation.
      • send

        public Tracker send​(Message<?> message,
                            Map<String,​Object> deliveryAnnotations)
                     throws ClientException
        Description copied from interface: Sender
        Send the given message immediately if there is credit available or blocks if the link has not yet been granted credit. The provided delivery annotations are encoded along with the message, the annotations can be passed repeatedly to send calls if sending the same delivery annotations with each message.
        Specified by:
        send in interface Sender
        Parameters:
        message - the Message to send.
        deliveryAnnotations - the delivery annotations that should be included in the sent Message.
        Returns:
        the Tracker for the message delivery
        Throws:
        ClientException - if an error occurs while initiating the send operation.
      • trySend

        public Tracker trySend​(Message<?> message)
                        throws ClientException
        Description copied from interface: Sender
        Send the given message if credit is available or returns null if no credit has been granted to the link at the time of the send attempt.
        Specified by:
        trySend in interface Sender
        Parameters:
        message - the Message to send if credit is available.
        Returns:
        the Tracker for the message delivery or null if no credit for sending.
        Throws:
        ClientException - if an error occurs while initiating the send operation.
      • trySend

        public Tracker trySend​(Message<?> message,
                               Map<String,​Object> deliveryAnnotations)
                        throws ClientException
        Description copied from interface: Sender
        Send the given message if credit is available or returns null if no credit has been granted to the link at the time of the send attempt. The provided delivery annotations are encoded along with the message, the annotations can be passed repeatedly to send calls if sending the same delivery annotations with each message.
        Specified by:
        trySend in interface Sender
        Parameters:
        message - the Message to send if credit is available.
        deliveryAnnotations - the delivery annotations that should be included in the sent Message.
        Returns:
        the Tracker for the message delivery or null if no credit for sending.
        Throws:
        ClientException - if an error occurs while initiating the send operation.