Uses of Class
org.objectweb.joram.shared.client.AbstractJmsRequest
-
Packages that use AbstractJmsRequest Package Description org.objectweb.joram.client.jms Theorg.objectweb.joram.client.jmspackage holds the classes implementing the interfaces defined by the JMS 2.0 specification.org.objectweb.joram.client.jms.connection org.objectweb.joram.client.jms.local org.objectweb.joram.client.jms.tcp Theorg.objectweb.joram.client.jms.tcppackage holds the ConnectionFactory and Connection classes specialized for supporting the TCP protocol as client - server communication protocol.org.objectweb.joram.mom.proxies Theorg.objectweb.joram.mom.proxiespackage holds the classes implementing the MOM proxy, basically linking external client applications to destination agents.org.objectweb.joram.shared.client Theorg.objectweb.joram.shared.clientpackage holds the request and reply objects used in the client-provider interactions.org.ow2.joram.jakarta.jms Theorg.ow2.joram.jakarta.jmspackage holds the classes implementing the interfaces defined by the JMS 3.0 Jakarta specification.org.ow2.joram.jakarta.jms.connection org.ow2.joram.jakarta.jms.local org.ow2.joram.jakarta.jms.tcp Theorg.ow2.joram.jakarta.jms.tcppackage holds the ConnectionFactory and Connection classes specialized for supporting the TCP protocol as client - server communication protocol. -
-
Uses of AbstractJmsRequest in org.objectweb.joram.client.jms
Methods in org.objectweb.joram.client.jms with parameters of type AbstractJmsRequest Modifier and Type Method Description (package private) AbstractJmsReplyConnection. syncRequest(AbstractJmsRequest request)(package private) AbstractJmsReplySession. syncRequest(AbstractJmsRequest request)Called by MessageConsumer. -
Uses of AbstractJmsRequest in org.objectweb.joram.client.jms.connection
Methods in org.objectweb.joram.client.jms.connection with parameters of type AbstractJmsRequest Modifier and Type Method Description AbstractJmsReplyRequestor. request(AbstractJmsRequest request)AbstractJmsReplyRequestor. request(AbstractJmsRequest request, long timeout, CompletionListener completionListener)Method sending a synchronous request to the server and waiting for an answer.AbstractJmsReplyRequestor. request(AbstractJmsRequest request, CompletionListener completionListener)voidMultiThreadSyncChannel. send(AbstractJmsRequest request)voidRequestChannel. send(AbstractJmsRequest obj)voidRequestMultiplexer. sendRequest(AbstractJmsRequest request)voidRequestMultiplexer. sendRequest(AbstractJmsRequest request, ReplyListener listener, CompletionListener completionListener) -
Uses of AbstractJmsRequest in org.objectweb.joram.client.jms.local
Methods in org.objectweb.joram.client.jms.local with parameters of type AbstractJmsRequest Modifier and Type Method Description voidLocalRequestChannel. send(AbstractJmsRequest request) -
Uses of AbstractJmsRequest in org.objectweb.joram.client.jms.tcp
Methods in org.objectweb.joram.client.jms.tcp with parameters of type AbstractJmsRequest Modifier and Type Method Description voidTcpRequestChannel. send(AbstractJmsRequest request)Sending a JMS request through the TCP connection. -
Uses of AbstractJmsRequest in org.objectweb.joram.mom.proxies
Methods in org.objectweb.joram.mom.proxies that return AbstractJmsRequest Modifier and Type Method Description AbstractJmsRequestConnectionContext. getRequest(Object req)AbstractJmsRequestReliableConnectionContext. getRequest(Object obj)AbstractJmsRequestStandardConnectionContext. getRequest(Object req)Methods in org.objectweb.joram.mom.proxies with parameters of type AbstractJmsRequest Modifier and Type Method Description private static CountDownCallbackConnectionManager. createCallback(AbstractJmsRequest req, ConnectionContext ctx)private voidUserAgent. doReact(int key, AbstractJmsRequest request, CallbackNotification callbackNotification)Distributes the client requests to the appropriate reactions.protected voidUserAgent. reactToClientRequest(int key, AbstractJmsRequest request, CallbackNotification callbackNotification)Method processing clients requests.static voidConnectionManager. sendToProxy(AgentId proxyId, int cnxKey, AbstractJmsRequest req, Object msg, ConnectionContext ctx) -
Uses of AbstractJmsRequest in org.objectweb.joram.shared.client
Subclasses of AbstractJmsRequest in org.objectweb.joram.shared.client Modifier and Type Class Description classActivateConsumerRequestclassAddClientIDRequestAAddClientIDRequestis sent by an setClientID onConnection.classCnxCloseRequestACnxCloseRequestis sent by a closing SOAP connection.classCnxConnectRequestACnxConnectRequestis sent by an openingConnection.classCnxStartRequestACnxStartRequestrequest is sent by a startingConnection.classCnxStopRequestACnxStopRequestis sent by a stoppingConnection.classCommitRequestclassConsumerAckRequestAConsumerAckRequestinstance is used by aMessageConsumerfor acknowledging a received message.classConsumerCloseSubRequestAConsumerCloseSubRequestis sent by a closing durableTopicSubscriber.classConsumerDenyRequestAConsumerDenyRequestinstance is used by aMessageConsumerfor denying a received message.classConsumerReceiveRequestAConsumerReceiveRequestis sent by aMessageConsumerwhen requesting a message.classConsumerSetListRequestAConsumerSetListRequestis sent by aMessageConsumeron which a message listener is set.classConsumerSubRequestAConsumerSubRequestis sent by a constructingMessageConsumerdestinated to consume messages on a topic.classConsumerUnsetListRequestAConsumerUnsetListRequestis sent by aMessageConsumerwhich listener is unset.classConsumerUnsubRequestAConsumerUnsubRequestis sent by a closing temporaryMessageConsumeron a topic, or by aSessionunsubscribing a durable subscriber.classGetAdminTopicRequestAGetAdminTopicRequestis sent by a session for retrieving the identifier of the local admin topic.classJmsRequestGroupclassPingRequestclassProducerMessagesAProducerMessagesinstance is sent by aMessageProducerwhen sending messages.classQBrowseRequestAQBrowseRequestinstance is sent by aQueueBrowserwhen requesting an enumeration.classSessAckRequestASessAckRequestinstance is used by aSessionfor acknowledging the messages it consumed.classSessCreateDestRequestASessCreateDestRequestis sent by aSessionfor creating a destination.classSessDenyRequestASessDenyRequestinstance is used by aSessionfor denying the messages it consumed.classTempDestDeleteRequestATempDestDeleteRequestinstance is sent by a deleting temporary destination.classXACnxCommitAnXACnxCommitinstance is used by anXAConnectionfor commiting the messages and acknowledgements it sent to the proxy.classXACnxPrepareAnXACnxPrepareinstance is used by anXAConnectionfor sending messages and acknowledgements to the proxy.classXACnxRecoverRequestAXACnxRecoverRequestinstance is used by anXACnxionfor recovering the identifiers of the TM's prepared transactions.classXACnxRollbackAnXACnxRollbackinstance is used by anXAConnectionfor rolling back the operations performed during a transaction.Fields in org.objectweb.joram.shared.client declared as AbstractJmsRequest Modifier and Type Field Description private AbstractJmsRequest[]JmsRequestGroup. requestsMethods in org.objectweb.joram.shared.client that return AbstractJmsRequest Modifier and Type Method Description AbstractJmsRequest[]JmsRequestGroup. getRequests()Constructors in org.objectweb.joram.shared.client with parameters of type AbstractJmsRequest Constructor Description JmsRequestGroup(AbstractJmsRequest[] ajr)ServerReply(AbstractJmsRequest request)Constructs aServerReplyinstance.SessCreateDestReply(AbstractJmsRequest request, String agentId)Constructs aSessCreateTDReplyinstance. -
Uses of AbstractJmsRequest in org.ow2.joram.jakarta.jms
Methods in org.ow2.joram.jakarta.jms with parameters of type AbstractJmsRequest Modifier and Type Method Description (package private) AbstractJmsReplyConnection. syncRequest(AbstractJmsRequest request)(package private) AbstractJmsReplySession. syncRequest(AbstractJmsRequest request)Called by MessageConsumer. -
Uses of AbstractJmsRequest in org.ow2.joram.jakarta.jms.connection
Methods in org.ow2.joram.jakarta.jms.connection with parameters of type AbstractJmsRequest Modifier and Type Method Description AbstractJmsReplyRequestor. request(AbstractJmsRequest request)AbstractJmsReplyRequestor. request(AbstractJmsRequest request, long timeout, CompletionListener completionListener)Method sending a synchronous request to the server and waiting for an answer.AbstractJmsReplyRequestor. request(AbstractJmsRequest request, CompletionListener completionListener)voidMultiThreadSyncChannel. send(AbstractJmsRequest request)voidRequestChannel. send(AbstractJmsRequest obj)voidRequestMultiplexer. sendRequest(AbstractJmsRequest request)voidRequestMultiplexer. sendRequest(AbstractJmsRequest request, ReplyListener listener, CompletionListener completionListener) -
Uses of AbstractJmsRequest in org.ow2.joram.jakarta.jms.local
Methods in org.ow2.joram.jakarta.jms.local with parameters of type AbstractJmsRequest Modifier and Type Method Description voidLocalRequestChannel. send(AbstractJmsRequest request) -
Uses of AbstractJmsRequest in org.ow2.joram.jakarta.jms.tcp
Methods in org.ow2.joram.jakarta.jms.tcp with parameters of type AbstractJmsRequest Modifier and Type Method Description voidTcpRequestChannel. send(AbstractJmsRequest request)Sending a JMS request through the TCP connection.
-