public interface JmsSupport
JmsSupport
is an interface that provides a polymorphic facade to
the JMS 1.0.2b and 1.1 API specifications. this interface is not intended for
general purpose use and should only be used with the Mule JMS connector.Modifier and Type | Method and Description |
---|---|
Connection |
createConnection(ConnectionFactory connectionFactory) |
Connection |
createConnection(ConnectionFactory connectionFactory,
String username,
String password) |
MessageConsumer |
createConsumer(Session session,
Destination destination,
boolean topic,
ImmutableEndpoint endpoint) |
MessageConsumer |
createConsumer(Session session,
Destination destination,
String messageSelector,
boolean noLocal,
String durableName,
boolean topic,
ImmutableEndpoint endpoint) |
Destination |
createDestination(Session session,
ImmutableEndpoint endpoint) |
Destination |
createDestination(Session session,
String name,
boolean topic,
ImmutableEndpoint endpoint) |
MessageProducer |
createProducer(Session session,
Destination destination,
boolean topic) |
Session |
createSession(Connection connection,
boolean topic,
boolean transacted,
int ackMode,
boolean noLocal) |
Destination |
createTemporaryDestination(Session session,
boolean topic) |
boolean |
isCacheJmsSessions() |
void |
send(MessageProducer producer,
Message message,
boolean topic,
ImmutableEndpoint endpoint) |
void |
send(MessageProducer producer,
Message message,
boolean persistent,
int priority,
long ttl,
boolean topic,
ImmutableEndpoint endpoint) |
void |
send(MessageProducer producer,
Message message,
Destination dest,
boolean topic,
ImmutableEndpoint endpoint) |
void |
send(MessageProducer producer,
Message message,
Destination dest,
boolean persistent,
int priority,
long ttl,
boolean topic,
ImmutableEndpoint endpoint) |
boolean isCacheJmsSessions()
Connection createConnection(ConnectionFactory connectionFactory) throws JMSException
JMSException
Connection createConnection(ConnectionFactory connectionFactory, String username, String password) throws JMSException
JMSException
Session createSession(Connection connection, boolean topic, boolean transacted, int ackMode, boolean noLocal) throws JMSException
JMSException
MessageProducer createProducer(Session session, Destination destination, boolean topic) throws JMSException
JMSException
MessageConsumer createConsumer(Session session, Destination destination, String messageSelector, boolean noLocal, String durableName, boolean topic, ImmutableEndpoint endpoint) throws JMSException
JMSException
MessageConsumer createConsumer(Session session, Destination destination, boolean topic, ImmutableEndpoint endpoint) throws JMSException
JMSException
Destination createDestination(Session session, String name, boolean topic, ImmutableEndpoint endpoint) throws JMSException
JMSException
Destination createDestination(Session session, ImmutableEndpoint endpoint) throws JMSException
JMSException
Destination createTemporaryDestination(Session session, boolean topic) throws JMSException
JMSException
void send(MessageProducer producer, Message message, boolean topic, ImmutableEndpoint endpoint) throws JMSException
JMSException
void send(MessageProducer producer, Message message, boolean persistent, int priority, long ttl, boolean topic, ImmutableEndpoint endpoint) throws JMSException
JMSException
void send(MessageProducer producer, Message message, Destination dest, boolean topic, ImmutableEndpoint endpoint) throws JMSException
JMSException
void send(MessageProducer producer, Message message, Destination dest, boolean persistent, int priority, long ttl, boolean topic, ImmutableEndpoint endpoint) throws JMSException
JMSException
Copyright © 2003–2016 MuleSoft, Inc.. All rights reserved.