All Examples  This Package  JMS Examples

Class examples.jms.queue.QueueBrowse

examples.jms.queue.QueueBrowse

public class QueueBrowse
This example shows how to establish a connection to a JMS queue and browse (but not dequeue) the queued messages. The classes in this package operate on the same JMS queue. Run the classes together to witness messages being sent and received and to browse the queue for messages. This class is used to browse, but not remove, messages in the queue.
Author:
Copyright (c) 1999-2000 by BEA Systems, Inc. All Rights Reserved.

Variable Index

 o JMS_FACTORY
 o JNDI_FACTORY
 o QUEUE

Constructor Index

 o QueueBrowse()

Method Index

 o close()
Close JMS objects.
 o displayQueue()
Display the current contents of the queue.
 o init(Context, String)
Create all the necessary objects for receiving messages from a JMS queue.
 o main(String[])

Variables

 o JNDI_FACTORY
 public static final String JNDI_FACTORY
 o JMS_FACTORY
 public static final String JMS_FACTORY
 o QUEUE
 public static final String QUEUE

Constructors

 o QueueBrowse
 public QueueBrowse()

Methods

 o init
 public void init(Context ctx,
                  String queueName) throws NamingException, JMSException
Create all the necessary objects for receiving messages from a JMS queue.

 o displayQueue
 public void displayQueue() throws JMSException
Display the current contents of the queue.

 o close
 public void close() throws JMSException
Close JMS objects.

 o main
 public static void main(String args[]) throws Exception

All Examples  This Package  JMS Examples