Uses of Interface
org.objectweb.joram.client.jms.connection.RequestChannel

Packages that use RequestChannel
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.jms.connection   
org.objectweb.joram.client.jms.ha.local   
org.objectweb.joram.client.jms.ha.tcp   
org.objectweb.joram.client.jms.local   
org.objectweb.joram.client.jms.soap The org.objectweb.joram.client.jms.soap package holds the ConnectionFactory and Connection classes specialized for supporting the SOAP protocol as client - server communication protocol. 
org.objectweb.joram.client.jms.tcp The org.objectweb.joram.client.jms.tcp package holds the ConnectionFactory and Connection classes specialized for supporting the TCP protocol as client - server communication protocol. 
 

Uses of RequestChannel in org.objectweb.joram.client.jms
 

Constructors in org.objectweb.joram.client.jms with parameters of type RequestChannel
Connection(FactoryParameters factoryParameters, RequestChannel requestChannel)
          Creates a Connection instance.
QueueConnection(FactoryParameters factoryParameters, RequestChannel requestChannel)
          Creates a QueueConnection instance.
TopicConnection(FactoryParameters factoryParameters, RequestChannel requestChannel)
          Creates a TopicConnection instance.
XAConnection(FactoryParameters factoryParameters, RequestChannel requestChannel)
          Creates a XAConnection instance.
XAQueueConnection(FactoryParameters factoryParameters, RequestChannel requestChannel)
          Creates an XAQueueConnection instance.
XATopicConnection(FactoryParameters factoryParameters, RequestChannel requestChannel)
          Creates an XATopicConnection instance.
 

Uses of RequestChannel in org.objectweb.joram.client.jms.admin
 

Methods in org.objectweb.joram.client.jms.admin that return RequestChannel
protected abstract  RequestChannel AbstractConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Creates the RequestChannel object specific to the protocol used.
 

Uses of RequestChannel in org.objectweb.joram.client.jms.connection
 

Classes in org.objectweb.joram.client.jms.connection that implement RequestChannel
 class MultiThreadSyncChannel
          Class wrapping the RequestChannel in order to group the requests.
 

Constructors in org.objectweb.joram.client.jms.connection with parameters of type RequestChannel
RequestMultiplexer(Connection cnx, RequestChannel channel, long heartBeat)
           
 

Uses of RequestChannel in org.objectweb.joram.client.jms.ha.local
 

Classes in org.objectweb.joram.client.jms.ha.local that implement RequestChannel
 class HALocalRequestChannel
           
 

Methods in org.objectweb.joram.client.jms.ha.local that return RequestChannel
protected  RequestChannel XATopicHALocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the HALocalRequestChannel object needed to connect to the colocated HA server.
protected  RequestChannel XAQueueHALocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the HALocalRequestChannel object needed to connect to the colocated HA server.
protected  RequestChannel XAHALocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the HALocalRequestChannel object needed to connect to the colocated HA server.
protected  RequestChannel TopicHALocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the HALocalRequestChannel object needed to connect to the colocated HA server.
protected  RequestChannel QueueHALocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the HALocalRequestChannel object needed to connect to the colocated HA server.
protected  RequestChannel HALocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Creates the HALocalRequestChannel object needed to connect to the colocated HA server.
 

Uses of RequestChannel in org.objectweb.joram.client.jms.ha.tcp
 

Classes in org.objectweb.joram.client.jms.ha.tcp that implement RequestChannel
 class HATcpRequestChannel
           
 

Methods in org.objectweb.joram.client.jms.ha.tcp that return RequestChannel
protected  RequestChannel XATopicHATcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the HATcpRequestChannel object needed to connect to the remote HA server.
protected  RequestChannel XAQueueHATcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the HATcpRequestChannel object needed to connect to the remote HA server.
protected  RequestChannel XAHATcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the HATcpRequestChannel object needed to connect to the remote HA server.
protected  RequestChannel TopicHATcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the HATcpRequestChannel object needed to connect to the remote HA server.
protected  RequestChannel QueueHATcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the HATcpRequestChannel object needed to connect to the remote HA server.
protected  RequestChannel HATcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Creates the HATcpRequestChannel object needed to connect to the remote HA server.
 

Uses of RequestChannel in org.objectweb.joram.client.jms.local
 

Classes in org.objectweb.joram.client.jms.local that implement RequestChannel
 class LocalRequestChannel
           
 

Methods in org.objectweb.joram.client.jms.local that return RequestChannel
protected  RequestChannel XATopicLocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the LocalRequestChannel object needed to connect to the colocated server.
protected  RequestChannel XAQueueLocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the LocalRequestChannel object needed to connect to the colocated server.
protected  RequestChannel XALocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the LocalRequestChannel object needed to connect to the colocated server.
protected  RequestChannel TopicLocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the LocalRequestChannel object needed to connect to the colocated server.
protected  RequestChannel QueueLocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the LocalRequestChannel object needed to connect to the colocated server.
protected  RequestChannel LocalConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Creates the LocalRequestChannel object needed to connect to the colocated server.
 

Uses of RequestChannel in org.objectweb.joram.client.jms.soap
 

Classes in org.objectweb.joram.client.jms.soap that implement RequestChannel
 class SoapRequestChannel
          A SoapConnection links a Joram client and a Joram platform with HTTP connections.
 

Methods in org.objectweb.joram.client.jms.soap that return RequestChannel
protected  RequestChannel TopicSoapConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the SoapRequestChannel object specific to the protocol used.
protected  RequestChannel SoapConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Creates the SoapRequestChannel object specific to the protocol used.
protected  RequestChannel QueueSoapConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the SoapRequestChannel object specific to the protocol used.
 

Uses of RequestChannel in org.objectweb.joram.client.jms.tcp
 

Classes in org.objectweb.joram.client.jms.tcp that implement RequestChannel
 class TcpRequestChannel
          A TcpConnection links a Joram client and a Joram platform with a TCP socket.
 

Methods in org.objectweb.joram.client.jms.tcp that return RequestChannel
protected  RequestChannel XATopicTcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the TcpRequestChannel object specific to the protocol used.
protected  RequestChannel XATcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the TcpRequestChannel object specific to the protocol used.
protected  RequestChannel XAQueueTcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the TcpRequestChannel object specific to the protocol used.
protected  RequestChannel TopicTcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the TcpRequestChannel object specific to the protocol used.
protected  RequestChannel TcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Creates the TcpRequestChannel object specific to the protocol used.
protected  RequestChannel QueueTcpConnectionFactory.createRequestChannel(FactoryParameters params, Identity identity, java.lang.String reliableClass)
          Deprecated. Creates the TcpRequestChannel object specific to the protocol used.
 



Copyright © 2011 ScalAgent D.T.. All Rights Reserved.