KickJava   Java API By Example, From Geeks To Geeks.

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


1 package com.ubermq.jms.common.datagram.control;
2
3 import com.ubermq.jms.common.datagram.IControlDatagram;
4
5 /**
6  * Creates, or restores, a durable subscription with the given name, to the given
7  * topic specification.
8  */

9 public interface IDurableSubscribeDatagram
10     extends ICommandSubGram
11 {
12     public String JavaDoc getTopicSpecification();
13     public String JavaDoc getSubscriptionName();
14     public String JavaDoc getSelector();
15 }
16
Popular Tags