Serialized Form
-
Package org.objectweb.joram.client.jms
-
Class org.objectweb.joram.client.jms.ConnectionFactory extends AbstractConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.Destination extends AdministeredObject implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
adminName
String adminName
Symbolic name given by the administrator. -
agentId
String agentId
Identifier of the agent destination. Be careful when using directly this attribute, it is null in clustered destination even the getDestination method is called. -
type
byte type
Type of the destination: Queue or Topic, Temporary or not.- See Also:
Destination.getType()
-
wrapper
AdminItf wrapper
Administration wrapper used to perform administration stuff.It is defined through AdminModule element, it is closed at the end of the script. if it is not defined the wrapper set at creation is used, if none the static AdminModule connection is used.
-
-
Class org.objectweb.joram.client.jms.FactoryParameters extends Object implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
asyncSend
boolean asyncSend
Determines whether the persistent produced messages are asynchronously sent (without acknowledge) or not.Messages sent asynchronously may be lost if a failure occurs before the message is persisted on the server.
Non persistent messages are always sent without acknowledgment.
Default is false, persistent messages are sent with acknowledge.
-
clientID
String clientID
The clientID used by connection -
cnxPendingTimer
int cnxPendingTimer
Period in milliseconds between two ping requests sent by the client connection to the server; if the server does not receive any ping request during approximatively more than 3* cnxPendingTimer, the connection is considered as dead and processed as required. -
compressedMinSize
int compressedMinSize
This attribute defines the minimum size beyond which the message body is compressed. The default value is 0 (no compression). -
compressionLevel
int compressionLevel
This attribute defines the compression level (0-9) used when the message body is compressed. The default value is 1 (Deflater.BEST_SPEED). -
connectingTimer
int connectingTimer
Duration in seconds during which connecting is attempted (connecting might take time if the server is temporarily not reachable). A value of zero is interpreted as an infinite timeout. The connection will then block until established or a TCP error occurs.The default value is 30.
-
host
String host
Name of host hosting the server to create connections with. -
implicitAck
boolean implicitAck
Determines whether the messages consumed are implicitly acknowledged or not. When true messages are immediately removed from queue when delivered. -
inInterceptors
List<MessageInterceptor> inInterceptors
List of Message interceptors while receiving a message.
These interceptors are called whenSession#receive()is called.
The execution follows the order of the elements within the list.
This property is facultative. If set, then theMessageInterceptorhandlecallback method of the IN interceptors} are called. -
messageIdPrefix
String messageIdPrefix
This attribute allows to customize the JMS MessageID adding the specified string. This value is overloaded by the property org.objectweb.joram.client.jms.messageid.prefix if it defined. By default empty. -
multiThreadSync
boolean multiThreadSync
Determines whether client threads which are using the same connection are synchronized in order to group together the requests they send. -
multiThreadSyncDelay
int multiThreadSyncDelay
The maximum time the threads hang if 'multiThreadSync' is true.Either they wake up (wait time out) or they are notified (by the first waken up thread).
Default value is 1ms.
-
multiThreadSyncThreshold
int multiThreadSyncThreshold
The maximum numbers of threads that hang if 'multiThreadSync' is true.Default value is 10 waiting threads.
-
noAckedQueue
boolean noAckedQueue
Set this attribute to true to increase performance. The default value is false (use the AckedQueue) -
outInterceptors
List<MessageInterceptor> outInterceptors
List of Message interceptors while sending a message.
These interceptors are called whenSession#send()is called.
The execution follows the order of the elements within the list.
This property is facultative. If set, then theMessageInterceptorhandlecallback method of the OUT interceptors} are called. -
outLocalAddress
String outLocalAddress
This is the local IP address on which the TCP connection is activated.The value can either be a machine name, such as "java.sun.com", or a textual representation of its IP address.
-
outLocalPort
int outLocalPort
This is the local IP address port on which the TCP connection is activated -
port
int port
Port to be used for accessing the server. -
queueMessageReadMax
int queueMessageReadMax
The maximum number of messages that can be read at once from a queue.Default is 1.
-
socketFactory
String socketFactory
Allows to define a specific factory for socket in order to by-pass compatibility problem between JDK version. Currently there is two factories, The default factory one for JDK since 1.4, and SocketFactory13 for JDK prior to 1.4. -
SoLinger
int SoLinger
Enable SO_LINGER with the specified linger time in seconds, if the value is less than 0 then it disables SO_LINGER. Default value is -1. -
SoTimeout
int SoTimeout
Enable/disable SO_TIMEOUT with the specified timeout in milliseconds. The timeout must be > 0. A timeout of zero is interpreted as an infinite timeout. Default value is 0. -
TcpNoDelay
boolean TcpNoDelay
Enable/disable TCP_NODELAY (disable/enable Nagle's algorithm), default value is true. -
topicAckBufferMax
int topicAckBufferMax
The maximum number of acknowledgements that can be buffered in Session.DUPS_OK_ACKNOWLEDGE mode when listening to a topic.Default value is 10.
-
topicActivationThreshold
int topicActivationThreshold
This threshold is the minimum messages number below which the subscription is activated.Default value is 0.
-
topicPassivationThreshold
int topicPassivationThreshold
This threshold is the maximum messages number over which the subscription is passivated.Default is Integer.MAX_VALUE.
-
txPendingTimer
int txPendingTimer
Duration in seconds during which a JMS transacted (non XA) session might be pending; above that duration the session is rolled back and closed; the 0 value means "no timer".The default value is 0 (no timer).
-
url
String url
url needed to connect to joram HA
-
-
Class org.objectweb.joram.client.jms.Queue extends Destination implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.QueueConnectionFactory extends AbstractConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.TemporaryQueue extends Queue implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cnx
Connection cnx
The connection the queue belongs to,nullif not known.
-
-
Class org.objectweb.joram.client.jms.TemporaryTopic extends Topic implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cnx
Connection cnx
The connection the topic belongs to,nullif not known.
-
-
Class org.objectweb.joram.client.jms.Topic extends Destination implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.TopicConnectionFactory extends AbstractConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.XAConnectionFactory extends AbstractConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.XAQueueConnectionFactory extends AbstractConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.XATopicConnectionFactory extends AbstractConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.objectweb.joram.client.jms.admin
-
Class org.objectweb.joram.client.jms.admin.AbstractConnectionFactory extends AdministeredObject implements Serializable
- serialVersionUID:
- -4654044059180563323L
-
Serialized Fields
-
cnxJMXBeanBaseName
String cnxJMXBeanBaseName
-
identity
org.objectweb.joram.shared.security.Identity identity
Authentication identity. -
identityClassName
String identityClassName
-
isSetIdentityClassName
boolean isSetIdentityClassName
-
params
FactoryParameters params
Object containing the factory's parameters. -
reliableClass
String reliableClass
Reliable class name, for example use by ssl.
-
-
Class org.objectweb.joram.client.jms.admin.AdminException extends Exception implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.admin.AdministeredObject extends Object implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.admin.ClusterConnectionFactory extends AdministeredObject implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cluster
Hashtable<String,ConnectionFactory> cluster
-
-
Class org.objectweb.joram.client.jms.admin.ClusterDestination extends Destination implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
cluster
Hashtable<String,Destination> cluster
-
-
Class org.objectweb.joram.client.jms.admin.ClusterQueue extends ClusterDestination implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.admin.ClusterTopic extends ClusterDestination implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.admin.DeadMQueue extends Queue implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.admin.NameAlreadyUsedException extends AdminException implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.admin.ServerIdAlreadyUsedException extends AdminException implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.admin.StartFailureException extends AdminException implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.admin.UnknownServerException extends AdminException implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.admin.User extends AdministeredObject implements Serializable
- serialVersionUID:
- 1L
-
Serialized Fields
-
name
String name
The name of the user. -
proxyId
String proxyId
Identifier of the user's proxy agent. -
wrapper
AdminWrapper wrapper
Administration wrapper used to perform administration stuff.It is defined through AdminModule element, it is closed at the end of the script. if it is not defined the wrapper set at creation is used, if none the static AdminModule connection is used.
-
-
-
Package org.objectweb.joram.client.jms.connection
-
Class org.objectweb.joram.client.jms.connection.AbortedRequestException extends Exception implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.objectweb.joram.client.jms.local
-
Class org.objectweb.joram.client.jms.local.LocalConnectionFactory extends ConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.local.QueueLocalConnectionFactory extends QueueConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.local.TopicLocalConnectionFactory extends TopicConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.local.XALocalConnectionFactory extends XAConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.local.XAQueueLocalConnectionFactory extends XAQueueConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.local.XATopicLocalConnectionFactory extends XATopicConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
-
Package org.objectweb.joram.client.jms.tcp
-
Class org.objectweb.joram.client.jms.tcp.QueueTcpConnectionFactory extends QueueConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.tcp.TcpConnectionFactory extends ConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.tcp.TopicTcpConnectionFactory extends TopicConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.tcp.XAQueueTcpConnectionFactory extends XAQueueConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.tcp.XATcpConnectionFactory extends XAConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-
Class org.objectweb.joram.client.jms.tcp.XATopicTcpConnectionFactory extends XATopicConnectionFactory implements Serializable
- serialVersionUID:
- 1L
-