KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.ubermq.jms.common.datagram.control;
2
3 import com.ubermq.jms.common.datagram.IControlDatagram;
4
5 /**
6  * unsubscribe from the given topic specification.
7  */

8 public interface IUnsubscribeDatagram
9     extends ICommandSubGram
10 {
11     public String JavaDoc getTopicSpecification();
12     
13 }
14
Popular Tags