| Modifier and Type | Method and Description |
|---|---|
TopicSubscriber |
TopicSession.createDurableSubscriber(Topic topic,
String name)
Creates a durable subscription with the specified name on the
specified topic, and creates a
TopicSubscriber
on that durable subscription. |
TopicSubscriber |
Session.createDurableSubscriber(Topic topic,
String name)
Creates a durable subscription with the specified name on the
specified topic, and creates a
TopicSubscriber
on that durable subscription. |
TopicSubscriber |
TopicSession.createDurableSubscriber(Topic topic,
String name,
String messageSelector,
boolean noLocal)
Creates a durable subscription with the specified name on the
specified topic (if one does not already exist), and creates a
TopicSubscriber
on that durable subscription, specifying a message
selector and whether messages published by its
own connection should be added to the durable subscription. |
TopicSubscriber |
Session.createDurableSubscriber(Topic topic,
String name,
String messageSelector,
boolean noLocal)
Creates a durable subscription with the specified name on the specified
topic (if one does not already exist), specifying a message selector and
the
noLocal parameter, and creates a
TopicSubscriber on that durable subscription. |
TopicSubscriber |
TopicSession.createSubscriber(Topic topic)
Creates a nondurable subscriber to the specified topic.
|
TopicSubscriber |
TopicSession.createSubscriber(Topic topic,
String messageSelector,
boolean noLocal)
Creates a nondurable subscriber to the specified topic, using a
message selector or specifying whether messages published by its
own connection should be delivered to it.
|
Copyright © 2012. All Rights Reserved.