KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.ubermq.jms.common.datagram.control;
2
3 import com.ubermq.jms.common.datagram.IControlDatagram;
4
5 /**
6  * Permanently unregisters and deletes a durable subscription. All unacknowledged
7  * messages will be lost.
8  */

9 public interface IDurableUnsubscribeDatagram
10     extends ICommandSubGram
11 {
12     public String JavaDoc getSubscriptionName();
13 }
14
Popular Tags