KickJava   Java API By Example, From Geeks To Geeks.

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


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 IQueueDeleteDatagram
10     extends ICommandSubGram
11 {
12     /**
13      * Returns the name of the queue to delete.
14      */

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