| Package | Description |
|---|---|
| com.solacesystems.jms |
The Solace Java Message Service (JMS) implementation and samples.
|
| com.solacesystems.jms.encoding | |
| com.solacesystems.jms.impl | |
| com.solacesystems.jms.message | |
| javax.jms |
The standard JMS 1.1 API.
|
| Modifier and Type | Interface and Description |
|---|---|
interface |
SolQueue
This is an interface to our proprietary implementation of a
Queue. |
interface |
SolTemporaryQueueIF |
interface |
SolTemporaryTopicIF |
interface |
SolTopic
This is an interface to our proprietary implementation of a
Topic. |
| Modifier and Type | Class and Description |
|---|---|
class |
SolDestination |
class |
SolTemporaryQueue |
class |
SolTemporaryTopic |
| Modifier and Type | Field and Description |
|---|---|
Destination |
SolDestinationInfo.destination
A Queue or Topic destination.
|
| Modifier and Type | Method and Description |
|---|---|
Destination |
SolMessageProducer.getDestination() |
| Modifier and Type | Method and Description |
|---|---|
ConnectionConsumer |
SolConnection.createConnectionConsumer(Destination destination,
String messageSelector,
ServerSessionPool sessionPool,
int maxMessages) |
MessageConsumer |
SolSession.createConsumer(Destination destination) |
MessageConsumer |
SolSession.createConsumer(Destination destination,
String messageSelector) |
MessageConsumer |
SolSession.createConsumer(Destination destination,
String messageSelector,
boolean NoLocal) |
MessageProducer |
SolSession.createProducer(Destination destination) |
void |
SolMessageProducer.send(Destination destination,
Message message) |
void |
SolMessageProducer.send(Destination destination,
Message message,
int deliveryMode,
int priority,
long timeToLive) |
| Modifier and Type | Method and Description |
|---|---|
static void |
InteropTest.testReplyTo(Destination expected,
Destination received,
int testNo) |
| Modifier and Type | Class and Description |
|---|---|
class |
SolQueueImpl |
class |
SolTopicImpl |
| Modifier and Type | Method and Description |
|---|---|
static Destination |
Validator.checkSendDestination(boolean crMode,
Destination defaultDest,
Destination dest) |
| Modifier and Type | Method and Description |
|---|---|
static void |
Validator.checkConsumerDestination(Destination destination,
SolConnectionIF conn) |
static void |
Validator.checkConsumerTempDestination(Destination destination,
SolConnectionIF conn) |
static void |
Validator.checkConsumerTopicDestination(Destination destination,
SolConnectionIF conn,
boolean durable) |
static void |
Validator.checkDeleteTempDestination(Destination destination,
SolConnectionIF conn) |
static void |
Validator.checkProducerDestination(boolean crMode,
Destination destination) |
static void |
Validator.checkProducerTempDestination(Destination destination) |
static Destination |
Validator.checkSendDestination(boolean crMode,
Destination defaultDest,
Destination dest) |
| Modifier and Type | Method and Description |
|---|---|
Destination |
SolMessage.getJMSDestination() |
Destination |
SolMessage.getJMSReplyTo() |
| Modifier and Type | Method and Description |
|---|---|
void |
SolMessage.setJMSDestination(Destination destination) |
void |
SolMessage.setJMSReplyTo(Destination replyTo) |
| Modifier and Type | Interface and Description |
|---|---|
interface |
Queue
A
Queue object encapsulates a provider-specific queue name. |
interface |
TemporaryQueue
A
TemporaryQueue object is a unique Queue object
created for the duration of a Connection. |
interface |
TemporaryTopic
A
TemporaryTopic object is a unique Topic object
created for the duration of a Connection. |
interface |
Topic
A
Topic object encapsulates a provider-specific topic name. |
| Modifier and Type | Method and Description |
|---|---|
Destination |
MessageProducer.getDestination()
Gets the destination associated with this
MessageProducer. |
Destination |
Message.getJMSDestination()
Gets the
Destination object for this message. |
Destination |
Message.getJMSReplyTo()
Gets the
Destination object to which a reply to this
message should be sent. |
| Modifier and Type | Method and Description |
|---|---|
ConnectionConsumer |
Connection.createConnectionConsumer(Destination destination,
String messageSelector,
ServerSessionPool sessionPool,
int maxMessages)
Creates a connection consumer for this connection (optional operation).
|
MessageConsumer |
Session.createConsumer(Destination destination)
Creates a
MessageConsumer for the specified destination. |
MessageConsumer |
Session.createConsumer(Destination destination,
String messageSelector)
Creates a
MessageConsumer for the specified destination,
using a message selector. |
MessageConsumer |
Session.createConsumer(Destination destination,
String messageSelector,
boolean NoLocal)
Creates
MessageConsumer for the specified destination, using a
message selector. |
MessageProducer |
Session.createProducer(Destination destination)
Creates a
MessageProducer to send messages to the specified
destination. |
void |
MessageProducer.send(Destination destination,
Message message)
Sends a message to a destination for an unidentified message producer.
|
void |
MessageProducer.send(Destination destination,
Message message,
int deliveryMode,
int priority,
long timeToLive)
Sends a message to a destination for an unidentified message producer,
specifying delivery mode, priority and time to live.
|
void |
Message.setJMSDestination(Destination destination)
Sets the
Destination object for this message. |
void |
Message.setJMSReplyTo(Destination replyTo)
Sets the
Destination object to which a reply to this
message should be sent. |
Copyright 2004-2019 Solace Corporation. All rights reserved.