|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
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.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(java.lang.String theURLString)
Factory method to create a TransportChannel from a URL |
protected TransportChannel |
ActiveMQConnectionFactory.ensureServerIsAvailable(java.net.URI remoteLocation,
TransportChannel channel,
BrokerConnector brokerConnector,
boolean created)
|
protected TransportChannel |
ActiveMQConnectionFactory.ensureMulticastChannelIsAvailable(java.net.URI remoteLocation,
TransportChannel channel,
BrokerConnector brokerConnector,
boolean created)
|
Methods in org.codehaus.activemq with parameters of type TransportChannel | |
protected TransportChannel |
ActiveMQConnectionFactory.ensureServerIsAvailable(java.net.URI remoteLocation,
TransportChannel channel,
BrokerConnector brokerConnector,
boolean created)
|
protected TransportChannel |
ActiveMQConnectionFactory.ensureMulticastChannelIsAvailable(java.net.URI remoteLocation,
TransportChannel channel,
BrokerConnector brokerConnector,
boolean created)
|
Constructors in org.codehaus.activemq with parameters of type TransportChannel | |
ActiveMQXAConnection(ActiveMQConnectionFactory factory,
java.lang.String theUserName,
java.lang.String thePassword,
TransportChannel transportChannel)
|
|
ActiveMQConnection(ActiveMQConnectionFactory factory,
java.lang.String theUserName,
java.lang.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 |
AbstractTransportChannel
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,
java.net.URI remoteLocation)
Create a Channel to a remote Node - e.g. |
static TransportChannel |
TransportChannelProvider.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.URI localLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
TransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
TransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.URI localLocation)
Create a Channel to a remote Node - e.g. |
Methods in org.codehaus.activemq.transport with parameters of type TransportChannel | |
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 | |
TransportChannel |
CompositeTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation)
|
TransportChannel |
CompositeTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.URI localLocation)
|
protected TransportChannel |
CompositeTransportChannel.getChannel()
|
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,
java.net.URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
EmberTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.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,
java.net.URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
GTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.URI localLocation)
Create a Channel to a remote Node - e.g. |
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,
java.net.URI remoteLocation)
|
TransportChannel |
JGroupsTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.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,
java.net.URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
JRMSTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.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,
java.net.URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
JxtaTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.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,
java.net.URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
MulticastTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.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 | |
TransportChannel |
ReliableTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation)
Create a TransportChannel |
Methods in org.codehaus.activemq.transport.reliable with parameters of type TransportChannel | |
protected void |
ReliableTransportChannel.doReconnect(TransportChannel currentChannel)
|
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,
java.net.URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
TcpTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.URI localLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
SfTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
SfTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.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,
java.net.URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
UdpTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.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,
java.net.URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
VmTransportChannelFactory.create(WireFormat wireFormat,
java.net.URI remoteLocation,
java.net.URI localLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
VmTransportChannel.createServerSide()
Creates the server side version of this client side channel. |
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |