KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > ubermq > jms > common > datagram > control > IQueueStartDatagram


1 package com.ubermq.jms.common.datagram.control;
2
3 import com.ubermq.jms.common.datagram.IControlDatagram;
4
5 /**
6  * The datagram interface representing a request to
7  * start receiving messages from a queue.
8  */

9 public interface IQueueStartDatagram
10     extends ICommandSubGram
11 {
12     /**
13      * Returns the name of the queue to start receiving
14      * from.
15      */

16     public String JavaDoc getQueueName();
17
18     /**
19      * Returns the name of the selector for this operation.
20      */

21     public String JavaDoc getSelector();
22 }
23
Popular Tags