KickJava   Java API By Example, From Geeks To Geeks.

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


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  * stop receiving messages from a queue.
8  */

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

16     public String JavaDoc getQueueName();
17 }
18
Popular Tags