Uses of Interface
org.codehaus.activemq.transport.TransportChannel

Packages that use TransportChannel
org.codehaus.activemq The core JMS client implementation classes 
org.codehaus.activemq.broker The API for the JMS Broker which is the server side of a JMS network though it may be deployed inside a client in peer style networks. 
org.codehaus.activemq.broker.impl The default implementation of the JMS Broker  
org.codehaus.activemq.transport The transport abstraction layer for sending and receiving Packets over a network  
org.codehaus.activemq.transport.composite A Composite Pattern implementation of TransportChannel allowing a client to connect randomly to one of a number of possible destinations, cycling through them until a connection is established. 
org.codehaus.activemq.transport.ember An implementation of the transport layer using EmberIO for efficient NIO  
org.codehaus.activemq.transport.gnet An implementation of the transport layer using the Geronimo networking layer. 
org.codehaus.activemq.transport.http A transport using the HTTP protocol to allow ActiveMQ to tunnel through firewalls. 
org.codehaus.activemq.transport.jgroups An implementation of the transport layer using JGroups  
org.codehaus.activemq.transport.jrms An implementation of the transport layer using Sun's reliable multicast library  
org.codehaus.activemq.transport.jxta An implementation of the transport layer using JXTA P2PSockets for navigating firewalls and NATs  
org.codehaus.activemq.transport.multicast An implementation of the transport layer using multicast  
org.codehaus.activemq.transport.reliable   
org.codehaus.activemq.transport.tcp An implementation of the transport layer using TCP/IP sockets  
org.codehaus.activemq.transport.udp An implementation of the transport layer using UDP  
org.codehaus.activemq.transport.vm An implementation of the transport layer using intra-JVM communication  
 

Uses of TransportChannel in org.codehaus.activemq
 

Methods in org.codehaus.activemq that return TransportChannel
protected  TransportChannel ActiveMQConnectionFactory.createTransportChannel(String theURLString)
          Factory method to create a TransportChannel from a URL
protected  TransportChannel ActiveMQConnectionFactory.ensureServerIsAvailable(URI remoteLocation, TransportChannel channel, BrokerConnector brokerConnector, boolean created)
           
protected  TransportChannel ActiveMQConnectionFactory.ensureMulticastChannelIsAvailable(URI remoteLocation, TransportChannel channel, BrokerConnector brokerConnector, boolean created)
           
 TransportChannel ActiveMQConnection.getTransportChannel()
           
 

Methods in org.codehaus.activemq with parameters of type TransportChannel
protected  TransportChannel ActiveMQConnectionFactory.ensureServerIsAvailable(URI remoteLocation, TransportChannel channel, BrokerConnector brokerConnector, boolean created)
           
protected  TransportChannel ActiveMQConnectionFactory.ensureMulticastChannelIsAvailable(URI remoteLocation, TransportChannel channel, BrokerConnector brokerConnector, boolean created)
           
 

Constructors in org.codehaus.activemq with parameters of type TransportChannel
ActiveMQXAConnection(ActiveMQConnectionFactory factory, String theUserName, String thePassword, TransportChannel transportChannel)
           
ActiveMQConnection(ActiveMQConnectionFactory factory, String theUserName, String thePassword, TransportChannel transportChannel)
          Constructs a connection from an existing TransportChannel and user/password.
 

Uses of TransportChannel in org.codehaus.activemq.broker
 

Methods in org.codehaus.activemq.broker that return TransportChannel
 TransportChannel BrokerClient.getChannel()
           
 

Methods in org.codehaus.activemq.broker with parameters of type TransportChannel
 void BrokerClient.initialize(BrokerConnector brokerConnector, TransportChannel channel)
          Initialize the Brokerclient
 

Uses of TransportChannel in org.codehaus.activemq.broker.impl
 

Methods in org.codehaus.activemq.broker.impl that return TransportChannel
 TransportChannel BrokerClientImpl.getChannel()
           
 

Methods in org.codehaus.activemq.broker.impl with parameters of type TransportChannel
 void BrokerConnectorImpl.addClient(TransportChannel channel)
           
 void BrokerConnectorImpl.removeClient(TransportChannel channel)
           
 void BrokerClientImpl.initialize(BrokerConnector brokerConnector, TransportChannel channel)
          Initialize the BrokerClient
 

Uses of TransportChannel in org.codehaus.activemq.transport
 

Classes in org.codehaus.activemq.transport that implement TransportChannel
 class DiscoveryTransportChannel
          A ReliableTransportChannel which uses a DiscoveryAgent to discover remote broker instances and dynamically connect to them.
 class TransportChannelSupport
          Some basic functionality, common across most transport implementations of channels
 

Methods in org.codehaus.activemq.transport that return TransportChannel
static TransportChannel TransportChannelProvider.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel to a remote Node - e.g.
static TransportChannel TransportChannelProvider.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel DiscoveryTransportChannelFactorySupport.create(WireFormat wireFormat, URI remoteLocation)
           
protected  TransportChannel TransportChannelFactorySupport.populateProperties(TransportChannel channel, URI uri)
          If a query string is present in the URI then set any simple bean properties on the channel
 TransportChannel TransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel TransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a Channel to a remote Node - e.g.
 

Methods in org.codehaus.activemq.transport with parameters of type TransportChannel
protected  TransportChannel TransportChannelFactorySupport.populateProperties(TransportChannel channel, URI uri)
          If a query string is present in the URI then set any simple bean properties on the channel
protected  void TransportServerChannelSupport.addClient(TransportChannel channel)
           
 void TransportChannelListener.addClient(TransportChannel channel)
          Called when a new channel is added to a server
 void TransportChannelListener.removeClient(TransportChannel channel)
          Called when a channel has been closed and removed from a server
 

Uses of TransportChannel in org.codehaus.activemq.transport.composite
 

Classes in org.codehaus.activemq.transport.composite that implement TransportChannel
 class CompositeTransportChannel
          A Compsite implementation of a TransportChannel
 

Fields in org.codehaus.activemq.transport.composite declared as TransportChannel
protected  TransportChannel CompositeTransportChannel.channel
           
 

Methods in org.codehaus.activemq.transport.composite that return TransportChannel
protected  TransportChannel CompositeTransportChannel.getChannel()
           
 TransportChannel CompositeTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
           
 TransportChannel CompositeTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
           
 

Uses of TransportChannel in org.codehaus.activemq.transport.ember
 

Classes in org.codehaus.activemq.transport.ember that implement TransportChannel
 class EmberTransportChannel
          An EmberIO (using NIO) implementation of a TransportChannel
 

Methods in org.codehaus.activemq.transport.ember that return TransportChannel
 TransportChannel EmberTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel EmberTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a Channel to a remote Node - e.g.
 

Uses of TransportChannel in org.codehaus.activemq.transport.gnet
 

Classes in org.codehaus.activemq.transport.gnet that implement TransportChannel
 class GTransportChannel
          An implementation of a TransportChannel which uses the Geronimo network layer for connectivity.
 

Methods in org.codehaus.activemq.transport.gnet that return TransportChannel
 TransportChannel GTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel GTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a Channel to a remote Node - e.g.
 

Uses of TransportChannel in org.codehaus.activemq.transport.http
 

Classes in org.codehaus.activemq.transport.http that implement TransportChannel
 class HttpClientTransportChannel
          A HTTP TransportChannel which uses the commons-httpclient library
 class HttpServerTransportChannel
          A server side HTTP based TransportChannel which processes incoming packets and adds outgoing packets onto a Channel so that they can be dispatched by the HTTP GET requests from the client.
 class HttpTransportChannel
           
 class HttpTransportChannelSupport
           
 

Methods in org.codehaus.activemq.transport.http that return TransportChannel
 TransportChannel HttpTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
           
 TransportChannel HttpTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
           
 

Uses of TransportChannel in org.codehaus.activemq.transport.jgroups
 

Classes in org.codehaus.activemq.transport.jgroups that implement TransportChannel
 class JGroupsTransportChannel
          A JGroups implementation of a TransportChannel
 

Methods in org.codehaus.activemq.transport.jgroups that return TransportChannel
 TransportChannel JGroupsTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
           
 TransportChannel JGroupsTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
           
 

Uses of TransportChannel in org.codehaus.activemq.transport.jrms
 

Classes in org.codehaus.activemq.transport.jrms that implement TransportChannel
 class JRMSTransportChannel
          A JRMS implementation of a TransportChannel
 

Methods in org.codehaus.activemq.transport.jrms that return TransportChannel
 TransportChannel JRMSTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel JRMSTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a Channel to a remote Node - e.g.
 

Uses of TransportChannel in org.codehaus.activemq.transport.jxta
 

Classes in org.codehaus.activemq.transport.jxta that implement TransportChannel
 class JxtaTransportChannel
          A JXTA implementation of a TransportChannel
 

Methods in org.codehaus.activemq.transport.jxta that return TransportChannel
 TransportChannel JxtaTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel JxtaTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a Channel to a remote Node - e.g.
 

Uses of TransportChannel in org.codehaus.activemq.transport.multicast
 

Classes in org.codehaus.activemq.transport.multicast that implement TransportChannel
 class MulticastTransportChannel
          A multicast implementation of a TransportChannel
 

Methods in org.codehaus.activemq.transport.multicast that return TransportChannel
 TransportChannel MulticastTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel MulticastTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a Channel to a remote Node - e.g.
 

Uses of TransportChannel in org.codehaus.activemq.transport.reliable
 

Classes in org.codehaus.activemq.transport.reliable that implement TransportChannel
 class ReliableTransportChannel
          A Compsite implementation of a TransportChannel
 

Methods in org.codehaus.activemq.transport.reliable that return TransportChannel
protected  TransportChannel ReliableTransportChannel.getEstablishedChannel(long timeout)
           
 TransportChannel ReliableTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a TransportChannel
 

Methods in org.codehaus.activemq.transport.reliable with parameters of type TransportChannel
protected  void ReliableTransportChannel.doReconnect(TransportChannel currentChannel, long timeout)
           
 

Uses of TransportChannel in org.codehaus.activemq.transport.tcp
 

Classes in org.codehaus.activemq.transport.tcp that implement TransportChannel
 class TcpTransportChannel
          A tcp implementation of a TransportChannel
 

Methods in org.codehaus.activemq.transport.tcp that return TransportChannel
 TransportChannel TcpTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel TcpTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel SfTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel SfTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a Channel to a remote Node - e.g.
 

Uses of TransportChannel in org.codehaus.activemq.transport.udp
 

Classes in org.codehaus.activemq.transport.udp that implement TransportChannel
 class UdpTransportChannel
          A UDP implementation of a TransportChannel
 

Methods in org.codehaus.activemq.transport.udp that return TransportChannel
 TransportChannel UdpTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel UdpTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a Channel to a remote Node - e.g.
 

Uses of TransportChannel in org.codehaus.activemq.transport.vm
 

Classes in org.codehaus.activemq.transport.vm that implement TransportChannel
 class VmTransportChannel
          A VM implementation of a TransportChannel
 

Methods in org.codehaus.activemq.transport.vm that return TransportChannel
 TransportChannel VmTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel VmTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a Channel to a remote Node - e.g.
 



Copyright © 2004 Protique, Ltd.. All Rights Reserved.