Package | Description |
---|---|
javax.jms |
JMS 1.1 API.
|
org.hornetq.api.jms |
API to create HornetQ JMS resources.
|
org.hornetq.jms.client |
Implementation of the JMS API.
|
Modifier and Type | Interface and Description |
---|---|
interface |
TemporaryTopic
A
TemporaryTopic object is a unique Topic object
created for the duration of a Connection . |
Modifier and Type | Method and Description |
---|---|
Topic |
TopicSession.createTopic(String topicName)
Creates a topic identity given a
Topic name. |
Topic |
Session.createTopic(String topicName)
Creates a topic identity given a
Topic name. |
Topic |
TopicSubscriber.getTopic()
Gets the
Topic associated with this subscriber. |
Topic |
TopicPublisher.getTopic()
Gets the topic associated with this
TopicPublisher . |
Modifier and Type | Method and Description |
---|---|
ConnectionConsumer |
TopicConnection.createConnectionConsumer(Topic topic,
String messageSelector,
ServerSessionPool sessionPool,
int maxMessages)
Creates a connection consumer for this connection (optional operation).
|
ConnectionConsumer |
TopicConnection.createDurableConnectionConsumer(Topic topic,
String subscriptionName,
String messageSelector,
ServerSessionPool sessionPool,
int maxMessages)
Create a durable connection consumer for this connection (optional operation).
|
ConnectionConsumer |
Connection.createDurableConnectionConsumer(Topic topic,
String subscriptionName,
String messageSelector,
ServerSessionPool sessionPool,
int maxMessages)
Create a durable connection consumer for this connection (optional operation).
|
TopicSubscriber |
TopicSession.createDurableSubscriber(Topic topic,
String name)
Creates a durable subscriber to the specified topic.
|
TopicSubscriber |
Session.createDurableSubscriber(Topic topic,
String name)
Creates a durable subscriber to the specified topic.
|
TopicSubscriber |
TopicSession.createDurableSubscriber(Topic topic,
String name,
String messageSelector,
boolean noLocal)
Creates a durable subscriber to the specified topic, using a
message selector or specifying whether messages published by its
own connection should be delivered to it.
|
TopicSubscriber |
Session.createDurableSubscriber(Topic topic,
String name,
String messageSelector,
boolean noLocal)
Creates a durable subscriber to the specified topic, using a
message selector and specifying whether messages published by its
own connection should be delivered to it.
|
TopicPublisher |
TopicSession.createPublisher(Topic topic)
Creates a publisher for the specified topic.
|
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.
|
void |
TopicPublisher.publish(Topic topic,
Message message)
Publishes a message to a topic for an unidentified message producer.
|
void |
TopicPublisher.publish(Topic topic,
Message message,
int deliveryMode,
int priority,
long timeToLive)
Publishes a message to a topic for an unidentified message
producer, specifying delivery mode, priority and time to live.
|
Constructor and Description |
---|
TopicRequestor(TopicSession session,
Topic topic) |
Modifier and Type | Method and Description |
---|---|
static Topic |
HornetQJMSClient.createTopic(String name)
Creates a client-side representation of a JMS Topic.
|
Modifier and Type | Class and Description |
---|---|
class |
HornetQTemporaryTopic
A HornetQTemporaryTopic
|
class |
HornetQTopic
HornetQ implementation of a JMS Topic.
|
Modifier and Type | Method and Description |
---|---|
Topic |
HornetQSession.createTopic(String topicName) |
Topic |
HornetQMessageProducer.getTopic() |
Topic |
HornetQMessageConsumer.getTopic() |
Modifier and Type | Method and Description |
---|---|
ConnectionConsumer |
HornetQConnection.createConnectionConsumer(Topic topic,
String messageSelector,
ServerSessionPool sessionPool,
int maxMessages) |
ConnectionConsumer |
HornetQConnection.createDurableConnectionConsumer(Topic topic,
String subscriptionName,
String messageSelector,
ServerSessionPool sessionPool,
int maxMessages) |
TopicSubscriber |
HornetQSession.createDurableSubscriber(Topic topic,
String name) |
TopicSubscriber |
HornetQSession.createDurableSubscriber(Topic topic,
String name,
String messageSelector,
boolean noLocal) |
TopicPublisher |
HornetQSession.createPublisher(Topic topic) |
TopicSubscriber |
HornetQSession.createSubscriber(Topic topic) |
TopicSubscriber |
HornetQSession.createSubscriber(Topic topic,
String messageSelector,
boolean noLocal) |
void |
HornetQMessageProducer.publish(Topic topic,
Message message) |
void |
HornetQMessageProducer.publish(Topic topic,
Message message,
int deliveryMode,
int priority,
long timeToLive) |
Copyright © 2012 JBoss by Red Hat. All Rights Reserved.