Uses of Interface
javax.jms.Queue

  • Uses of Queue in javax.jms

    Subinterfaces of Queue in javax.jms
    Modifier and Type
    Interface
    Description
    interface 
    A TemporaryQueue object is a unique Queue object created for the duration of a Connection.
    Methods in javax.jms that return Queue
    Modifier and Type
    Method
    Description
    JMSContext.createQueue(String queueName)
    Creates a Queue object which encapsulates a specified provider-specific queue name.
    QueueSession.createQueue(String queueName)
    Creates a queue identity given a Queue name.
    Session.createQueue(String queueName)
    Creates a Queue object which encapsulates a specified provider-specific queue name.
    QueueBrowser.getQueue()
    Gets the queue associated with this queue browser.
    QueueReceiver.getQueue()
    Gets the Queue associated with this queue receiver.
    QueueSender.getQueue()
    Gets the queue associated with this QueueSender.
    Methods in javax.jms with parameters of type Queue
    Modifier and Type
    Method
    Description
    JMSContext.createBrowser(Queue queue)
    Creates a QueueBrowser object to peek at the messages on the specified queue.
    JMSContext.createBrowser(Queue queue, String messageSelector)
    Creates a QueueBrowser object to peek at the messages on the specified queue using a message selector.
    QueueSession.createBrowser(Queue queue)
    Creates a QueueBrowser object to peek at the messages on the specified queue.
    QueueSession.createBrowser(Queue queue, String messageSelector)
    Creates a QueueBrowser object to peek at the messages on the specified queue using a message selector.
    Session.createBrowser(Queue queue)
    Creates a QueueBrowser object to peek at the messages on the specified queue.
    Session.createBrowser(Queue queue, String messageSelector)
    Creates a QueueBrowser object to peek at the messages on the specified queue using a message selector.
    QueueConnection.createConnectionConsumer(Queue queue, String messageSelector, ServerSessionPool sessionPool, int maxMessages)
    Creates a connection consumer for this connection (optional operation).
    QueueSession.createReceiver(Queue queue)
    Creates a QueueReceiver object to receive messages from the specified queue.
    QueueSession.createReceiver(Queue queue, String messageSelector)
    Creates a QueueReceiver object to receive messages from the specified queue using a message selector.
    QueueSession.createSender(Queue queue)
    Creates a QueueSender object to send messages to the specified queue.
    void
    QueueSender.send(Queue queue, Message message)
    Sends a message to a queue for an unidentified message producer.
    void
    QueueSender.send(Queue queue, Message message, int deliveryMode, int priority, long timeToLive)
    Sends a message to a queue for an unidentified message producer, specifying delivery mode, priority and time to live.
    Constructors in javax.jms with parameters of type Queue
    Modifier
    Constructor
    Description
     
    Constructor for the QueueRequestor class.