Package | Description |
---|---|
org.objectweb.joram.client.jms |
The
org.objectweb.joram.client.jms package holds the classes implementing the interfaces defined by the JMS 1.1 specification. |
org.objectweb.joram.client.jms.admin |
The
org.objectweb.joram.client.jms.admin package holds the interfaces and implementation classes for administering a JORAM platform and creating the JMS administered objects. |
org.objectweb.joram.client.osgi | |
org.objectweb.joram.tools.rest.admin | |
org.ow2.joram.spring |
Modifier and Type | Class and Description |
---|---|
class |
Queue
Implements the
javax.jms.Queue interface. |
class |
TemporaryQueue
Implements the
javax.jms.TemporaryQueue interface. |
class |
TemporaryTopic
Implements the
javax.jms.TemporaryTopic interface. |
class |
Topic
Implements the
javax.jms.Topic interface. |
Modifier and Type | Field and Description |
---|---|
protected Destination |
MessageProducer.dest
The destination the producer sends messages to.
|
protected Destination |
MessageConsumer.dest
The destination the consumer gets its messages from.
|
Modifier and Type | Method and Description |
---|---|
Destination |
MessageConsumer.getDest() |
static Destination |
Destination.newInstance(String id,
String name,
byte type) |
Modifier and Type | Method and Description |
---|---|
(package private) void |
Session.acknowledge(Destination dest,
String msgId)
Method acknowledging one received message.
|
protected void |
Destination.doCreate(int serverId,
String name,
String className,
Properties props,
Destination dest,
byte type)
Administration method creating or retrieving a destination with a given name on a
given server, and returning its identifier.
|
private void |
MessageProducer.doSend(Destination dest,
Message message,
int deliveryMode,
int priority,
long timeToLive)
Actually sends a message to a given destination.
|
private void |
MessageProducer.doSend(Destination dest,
Message message,
int deliveryMode,
int priority,
long timeToLive,
CompletionListener completionListener)
Actually sends a message to a given destination.
|
static String |
Destination.getJMXBeanName(String base,
Destination dest) |
private void |
Session.prepareSend(Destination dest,
Message msg)
Method called by message producers when producing a message for
preparing the session to later commit it.
|
(package private) void |
Session.send(Destination dest,
Message msg,
int deliveryMode,
int priority,
long timeToLive,
boolean timestampDisabled,
long deliveryDelay,
CompletionListener completionListener,
MessageProducer messageProducer)
Called by MessageProducer.
|
Constructor and Description |
---|
MessageConsumer(Session sess,
Destination dest,
String selector)
Constructs a consumer.
|
MessageConsumer(Session sess,
Destination dest,
String selector,
String subName,
boolean noLocal,
boolean shared,
boolean durableSubscriber)
Constructs a consumer.
|
MessageProducer(Session sess,
Destination dest)
Constructs a producer.
|
QueueReceiver(QueueSession sess,
Destination queue,
String selector)
Constructs a receiver.
|
QueueSender(QueueSession sess,
Destination queue)
Constructs a sender.
|
TopicPublisher(TopicSession sess,
Destination topic)
Constructs a publisher.
|
TopicSubscriber(Session sess,
Destination topic,
String name,
String selector,
boolean noLocal,
boolean durableSubscriber)
Constructs a subscriber.
|
Modifier and Type | Class and Description |
---|---|
class |
ClusterDestination
A base class for clustered destinations.
|
class |
ClusterQueue
Clustered queue.
|
class |
ClusterTopic
Clustered topic.
|
class |
DeadMQueue
Deprecated.
Since Joram 5.2.2 the DeadMQueue is a simply a Queue.
|
Modifier and Type | Method and Description |
---|---|
Destination |
JoramAdmin.createQueue(int serverId,
String name)
Creates or retrieves a queue destination on the underlying JORAM server,
(re)binds the corresponding
Queue instance. |
Destination |
AdminWrapper.createQueue(int serverId,
String name)
Creates or retrieves a queue destination on a given JORAM server.
|
Destination |
AdminItf.createQueue(int serverId,
String name)
Creates or retrieves a queue destination on a given JORAM server.
|
Destination |
JoramAdmin.createQueue(int serverId,
String name,
String className,
Properties prop) |
Destination |
AdminWrapper.createQueue(int serverId,
String name,
String className,
Properties prop)
Creates or retrieves a queue destination on a given JORAM server.
|
static Destination |
AdminModule.createQueue(int serverId,
String name,
String className,
Properties prop)
Creates or retrieves a queue destination on a given JORAM server.
|
Destination |
AdminItf.createQueue(int serverId,
String name,
String className,
Properties prop)
Creates or retrieves a queue destination on a given JORAM server.
|
Destination |
JoramAdmin.createQueue(String name)
Creates or retrieves a queue destination on the underlying JORAM server,
(re)binds the corresponding
Queue instance. |
Destination |
AdminWrapper.createQueue(String name)
Creates or retrieves a queue destination on a given JORAM server.
|
Destination |
AdminItf.createQueue(String name)
Creates or retrieves a queue destination on a given JORAM server.
|
Destination |
JoramAdmin.createTopic(int serverId,
String name)
Creates or retrieves a topic destination on the underlying JORAM server,
(re)binds the corresponding
Topic instance. |
Destination |
AdminWrapper.createTopic(int serverId,
String name)
Creates or retrieves a topic destination on a given JORAM server.
|
Destination |
AdminItf.createTopic(int serverId,
String name)
Creates or retrieves a topic destination on a given JORAM server.
|
Destination |
JoramAdmin.createTopic(int serverId,
String name,
String className,
Properties prop) |
Destination |
AdminWrapper.createTopic(int serverId,
String name,
String className,
Properties prop)
Creates or retrieves a topic destination on a given JORAM server.
|
static Destination |
AdminModule.createTopic(int serverId,
String name,
String className,
Properties prop)
Creates or retrieves a topic destination on a given JORAM server.
|
Destination |
AdminItf.createTopic(int serverId,
String name,
String className,
Properties prop)
Creates or retrieves a topic destination on a given JORAM server.
|
Destination |
JoramAdmin.createTopic(String name)
Creates or retrieves a topic destination on the underlying JORAM server,
(re)binds the corresponding
Topic instance. |
Destination |
AdminWrapper.createTopic(String name)
Creates or retrieves a topic destination on the underlying JORAM server.
|
Destination |
AdminItf.createTopic(String name)
Creates or retrieves a topic destination on the underlying JORAM server.
|
protected Destination |
ClusterDestination.getDestination()
return the appropriate destination of cluster
|
Destination[] |
JoramAdmin.getDestinations()
This method creates and registers MBeans for all the destinations on
the local server.
|
Destination[] |
AdminWrapper.getDestinations()
Returns the list of all destinations that exist on the local server.
|
static Destination[] |
AdminModule.getDestinations()
Returns the list of all destinations that exist on the local server,
or null if none exist.
|
Destination[] |
AdminItf.getDestinations()
Returns the list of all destinations that exist on the local server.
|
Destination[] |
JoramAdmin.getDestinations(int serverId)
This method creates and registers MBeans for all the destinations of
the selected server.
|
Destination[] |
AdminWrapper.getDestinations(int serverId)
Returns the list of all destinations that exist on a given server.
|
static Destination[] |
AdminModule.getDestinations(int serverId)
Returns the list of all destinations that exist on a given server,
or null if none exist.
|
Destination[] |
AdminItf.getDestinations(int serverId)
Returns the list of all destinations that exist on a given server.
|
private Destination |
JoramAdmin.wrapDestination(Destination destination) |
private Destination[] |
JoramAdmin.wrapDestinations(Destination[] destinations) |
Modifier and Type | Method and Description |
---|---|
void |
ClusterDestination.addDestination(Destination dest)
Adds a destination to the cluster.
|
void |
ClusterDestination.addDestination(String location,
Destination dest)
Adds a destination to the cluster with the specified
location key. |
(package private) void |
JoramSaxWrapper.configureDestination(Destination dest) |
(package private) void |
JoramSaxWrapper.registerDestination(Destination dest) |
(package private) void |
JoramSaxWrapper.setDestinationDMQ(String name,
Destination dest,
String dmq) |
static void |
AdminHelper.setQueueCluster(Destination clusterQueue,
Queue joiningQueue)
Deprecated.
|
private Destination |
JoramAdmin.wrapDestination(Destination destination) |
private Destination[] |
JoramAdmin.wrapDestinations(Destination[] destinations) |
Modifier and Type | Field and Description |
---|---|
protected HashMap<String,Destination> |
ServiceDestination.destinations |
private HashMap<String,Destination> |
DestinationMSF.destinations |
Modifier and Type | Method and Description |
---|---|
private Destination |
DestinationMSF.createDestination(AdminItf wrapper,
int serverId,
String name,
String className,
Properties props) |
private Destination |
ServiceDestination.createDestination(AdminItf wrapper,
int serverId,
String name,
String className,
Properties props,
boolean isQueue) |
Modifier and Type | Method and Description |
---|---|
private void |
ServiceDestination.setDestinationDMQ(AdminItf wrapper,
Destination dest,
String dmq,
int dmqSid) |
private void |
DestinationMSF.setDestinationDMQ(AdminItf wrapper,
Destination dest,
String dmq,
int dmqSid) |
private void |
ServiceDestination.setRight(AdminItf wrapper,
Destination dest,
int serverId,
boolean freeReading,
boolean freeWriting,
String readers,
String writers) |
private void |
DestinationMSF.setRight(AdminItf wrapper,
Destination dest,
int serverId,
boolean freeReading,
boolean freeWriting,
String readers,
String writers) |
Modifier and Type | Method and Description |
---|---|
Destination |
AdminHelper.createQueue(int serverId,
String name) |
Destination |
AdminHelper.createQueue(int serverId,
String name,
String className,
Properties props) |
Destination |
AdminHelper.createQueue(String name) |
Destination |
AdminHelper.createTopic(int serverId,
String name) |
Destination |
AdminHelper.createTopic(int serverId,
String name,
String className,
Properties props) |
Destination |
AdminHelper.createTopic(String name) |
Modifier and Type | Method and Description |
---|---|
ArrayList<Destination> |
AdminHelper.getQueueNames(int serverId) |
ArrayList<Destination> |
AdminHelper.getTopicNames(int serverId) |
Modifier and Type | Method and Description |
---|---|
void |
AdminHelper.rebind(String name,
Destination dest) |
Modifier and Type | Field and Description |
---|---|
private Destination |
JoramDestination.dest |
Modifier and Type | Method and Description |
---|---|
void |
JoramDestination.setDestination(Destination dest) |
Copyright © 2021 ScalAgent D.T.. All rights reserved.