| Package | Description |
|---|---|
| com.googlecode.fascinator.common.messaging |
| Modifier and Type | Method and Description |
|---|---|
static MessagingServices |
MessagingServices.getInstance()
Get messaging service instance
|
javax.jms.Connection |
MessagingServices.newConnection()
Establish a new JMS Connection to the local broker
|
javax.jms.Session |
MessagingServices.newSession()
Establish a new JMS Session on an existing connection to the local broker
|
void |
MessagingServices.onEvent(java.util.Map<java.lang.String,java.lang.String> param)
To put events to subscriber queue
|
void |
MessagingServices.publishMessage(java.lang.String name,
java.lang.String msg)
Sends a textual message to the named topic of the local broker.
|
void |
MessagingServices.publishMessage(java.lang.String brokerUrl,
java.lang.String name,
java.lang.String msg)
Sends a textual message to the named topic on any broker.
|
void |
MessagingServices.queueMessage(java.lang.String name,
java.lang.String msg)
Sends a textual message to a named JMS queue on the local broker
|
void |
MessagingServices.queueMessage(java.lang.String brokerUrl,
java.lang.String name,
java.lang.String msg)
Sends a textual message to a named JMS queue on any broker.
|
void |
MessagingServices.sendMessage(java.lang.String brokerUrl,
javax.jms.Destination destination,
javax.jms.TextMessage msg)
Sends a JMS message to an instantiated JMS destination.
|
void |
MessagingServices.topicMessage(java.lang.String name,
java.lang.String msg)
Sends a textual message to a named JMS topic on the local broker
|
void |
MessagingServices.topicMessage(java.lang.String brokerUrl,
java.lang.String name,
java.lang.String msg)
Sends a textual message to a named JMS topic on any broker.
|
Copyright © 2009-2019. All Rights Reserved.