Package | Description |
---|---|
javax.jms |
The Java Message Service (JMS) API provides a common way for Java programs to create, send, receive and read an enterprise messaging system's messages.
|
org.apache.activemq.artemis.jms.client |
Modifier and Type | Method and Description |
---|---|
TopicSubscriber |
TopicSession.createDurableSubscriber(Topic topic,
String name)
Creates an unshared durable subscription on the specified topic (if one
does not already exist) and creates a consumer on that durable
subscription.
|
TopicSubscriber |
Session.createDurableSubscriber(Topic topic,
String name)
Creates an unshared durable subscription on the specified topic (if one
does not already exist) and creates a consumer on that durable
subscription.
|
TopicSubscriber |
TopicSession.createDurableSubscriber(Topic topic,
String name,
String messageSelector,
boolean noLocal)
Creates an unshared durable subscription on the specified topic (if one
does not already exist), specifying a message selector and the
noLocal parameter, and creates a consumer on that durable
subscription. |
TopicSubscriber |
Session.createDurableSubscriber(Topic topic,
String name,
String messageSelector,
boolean noLocal)
Creates an unshared durable subscription on the specified topic (if one
does not already exist), specifying a message selector and the
noLocal parameter, and creates a consumer 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.
|
Modifier and Type | Class and Description |
---|---|
class |
ActiveMQMessageConsumer
ActiveMQ Artemis implementation of a JMS MessageConsumer.
|
Modifier and Type | Method and Description |
---|---|
TopicSubscriber |
ActiveMQSession.createDurableSubscriber(Topic topic,
String name) |
TopicSubscriber |
ActiveMQSession.createDurableSubscriber(Topic topic,
String name,
String messageSelector,
boolean noLocal) |
TopicSubscriber |
ActiveMQSession.createSubscriber(Topic topic) |
TopicSubscriber |
ActiveMQSession.createSubscriber(Topic topic,
String messageSelector,
boolean noLocal) |
Copyright © 2018 JBoss by Red Hat. All rights reserved.