Class Destination


  • public class Destination
    extends Object
    Represents a STOMP destination. Depending on the implementation, the message delivery is different. Queue are sending message to only one subscribers, while topics are broadcasting the message to all subscribers.

    Implementations must be thread-safe.

    NOTE: This class has been automatically generated from the original non RX-ified interface using Vert.x codegen.

    • Constructor Detail

      • Destination

        public Destination​(Destination delegate)
      • Destination

        public Destination​(Object delegate)
    • Method Detail

      • hashCode

        public int hashCode()
        Overrides:
        hashCode in class Object
      • destination

        public String destination()
        Returns:
        the destination address.
      • unsubscribe

        public boolean unsubscribe​(StompServerConnection connection,
                                   Frame frame)
        Handles a un-subscription request to the current Destination.
        Parameters:
        connection - the connection
        frame - the UNSUBSCRIBE frame
        Returns:
        true if the un-subscription has been handled, false otherwise.
      • unsubscribeConnection

        public Destination unsubscribeConnection​(StompServerConnection connection)
        Removes all subscriptions of the given connection
        Parameters:
        connection - the connection
        Returns:
        the current instance of Destination
      • ack

        public boolean ack​(StompServerConnection connection,
                           Frame frame)
        Handles a ACK frame.
        Parameters:
        connection - the connection
        frame - the ACK frame
        Returns:
        true if the destination has handled the frame (meaning it has sent the message with id)
      • nack

        public boolean nack​(StompServerConnection connection,
                            Frame frame)
        Handles a NACK frame.
        Parameters:
        connection - the connection
        frame - the NACK frame
        Returns:
        true if the destination has handled the frame (meaning it has sent the message with id)
      • getSubscriptions

        public List<String> getSubscriptions​(StompServerConnection connection)
        Gets all subscription ids for the given destination hold by the given client
        Parameters:
        connection - the connection (client)
        Returns:
        the list of subscription id, empty if none
      • numberOfSubscriptions

        public int numberOfSubscriptions()
        Gets the number of subscriptions attached to the current Destination.
        Returns:
        the number of subscriptions.
      • matches

        public boolean matches​(String address)
        Checks whether or not the given address matches with the current destination.
        Parameters:
        address - the address
        Returns:
        true if it matches, false otherwise.