|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use TransportChannel | |
---|---|
org.activemq | The core JMS client implementation classes |
org.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.activemq.broker.impl | The default implementation of the JMS Broker |
org.activemq.transport | The transport abstraction layer for sending and receiving Packets over a network |
org.activemq.transport.activeio | An implementation of the transport layer using activeio channels see http://activeio.org |
org.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.activemq.transport.jabber | A transport using Jabber (XMPP) |
org.activemq.transport.multicast | An implementation of the transport layer using multicast |
org.activemq.transport.peer | |
org.activemq.transport.reliable | |
org.activemq.transport.remote | |
org.activemq.transport.stomp | An implementation of the Stomp protocol which is a simple wire protocol for writing clients for ActiveMQ in different languages like Ruby, Python, PHP, C etc. |
org.activemq.transport.tcp | An implementation of the transport layer using TCP/IP sockets |
org.activemq.transport.udp | An implementation of the transport layer using UDP |
org.activemq.transport.vm | An implementation of the transport layer using intra-JVM communication |
Uses of TransportChannel in org.activemq |
---|
Methods in org.activemq that return TransportChannel | |
---|---|
protected TransportChannel |
ActiveMQConnectionFactory.createTransportChannel(String theURLString)
Factory method to create a TransportChannel from a URL |
protected TransportChannel |
ActiveMQConnectionFactory.ensureMulticastChannelIsAvailable(URI remoteLocation,
TransportChannel channel,
BrokerConnector brokerConnector,
boolean created)
|
protected TransportChannel |
ActiveMQConnectionFactory.ensureServerIsAvailable(URI remoteLocation,
TransportChannel channel,
BrokerConnector brokerConnector,
boolean created)
|
TransportChannel |
ActiveMQConnection.getTransportChannel()
|
Methods in org.activemq with parameters of type TransportChannel | |
---|---|
protected TransportChannel |
ActiveMQConnectionFactory.ensureMulticastChannelIsAvailable(URI remoteLocation,
TransportChannel channel,
BrokerConnector brokerConnector,
boolean created)
|
protected TransportChannel |
ActiveMQConnectionFactory.ensureServerIsAvailable(URI remoteLocation,
TransportChannel channel,
BrokerConnector brokerConnector,
boolean created)
|
Constructors in org.activemq with parameters of type TransportChannel | |
---|---|
ActiveMQConnection(ActiveMQConnectionFactory factory,
String theUserName,
String thePassword,
TransportChannel transportChannel)
Constructs a connection from an existing TransportChannel and user/password. |
|
ActiveMQXAConnection(ActiveMQConnectionFactory factory,
String theUserName,
String thePassword,
TransportChannel transportChannel)
|
Uses of TransportChannel in org.activemq.broker |
---|
Methods in org.activemq.broker that return TransportChannel | |
---|---|
TransportChannel |
BrokerClient.getChannel()
|
Methods in org.activemq.broker with parameters of type TransportChannel | |
---|---|
void |
BrokerClient.initialize(BrokerConnector brokerConnector,
TransportChannel channel)
Initialize the Brokerclient |
Uses of TransportChannel in org.activemq.broker.impl |
---|
Methods in org.activemq.broker.impl that return TransportChannel | |
---|---|
TransportChannel |
BrokerClientImpl.getChannel()
|
Methods in org.activemq.broker.impl with parameters of type TransportChannel | |
---|---|
void |
BrokerConnectorImpl.addClient(TransportChannel channel)
|
void |
BrokerClientImpl.initialize(BrokerConnector brokerConnector,
TransportChannel channel)
Initialize the BrokerClient |
void |
BrokerConnectorImpl.removeClient(TransportChannel channel)
|
Uses of TransportChannel in org.activemq.transport |
---|
Classes in org.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.activemq.transport that return TransportChannel | |
---|---|
TransportChannel |
DiscoveryTransportChannelFactorySupport.create(WireFormat wireFormat,
URI remoteLocation)
|
TransportChannel |
TransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a Channel to a remote Node - e.g. |
static TransportChannel |
TransportChannelProvider.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. |
static TransportChannel |
TransportChannelProvider.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
TransportStatusEvent.getTransportChannel()
|
protected TransportChannel |
TransportChannelFactorySupport.populateProperties(TransportChannel channel,
Map properties)
|
protected TransportChannel |
TransportChannelFactorySupport.populateProperties(TransportChannel channel,
String uri)
If a query string is present in the URI then set any simple bean properties on the channel |
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 |
Methods in org.activemq.transport with parameters of type TransportChannel | |
---|---|
void |
TransportChannelListener.addClient(TransportChannel channel)
Called when a new channel is added to a server |
void |
TransportServerChannelSupport.addClient(TransportChannel channel)
Add a channel |
protected TransportChannel |
TransportChannelFactorySupport.populateProperties(TransportChannel channel,
Map properties)
|
protected TransportChannel |
TransportChannelFactorySupport.populateProperties(TransportChannel channel,
String uri)
If a query string is present in the URI then set any simple bean properties on the channel |
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 |
void |
TransportChannelListener.removeClient(TransportChannel channel)
Called when a channel has been closed and removed from a server |
void |
TransportServerChannelSupport.removeClient(TransportChannel channel)
remove a channel |
void |
TransportStatusEvent.setTransportChannel(TransportChannel transportChannel)
|
Constructors in org.activemq.transport with parameters of type TransportChannel | |
---|---|
NetworkChannel(NetworkConnector connector,
BrokerContainer brokerContainer,
TransportChannel channel,
String remoteBrokerName,
String remoteclusterName)
Create a NetworkConnector from a TransportChannel |
|
TransportStatusEvent(TransportChannel tc,
int channelStatus)
Constructs an event with the given channel status. |
Uses of TransportChannel in org.activemq.transport.activeio |
---|
Classes in org.activemq.transport.activeio that implement TransportChannel | |
---|---|
class |
ActiveIOTransportChannel
A tcp implementation of a TransportChannel |
Methods in org.activemq.transport.activeio that return TransportChannel | |
---|---|
TransportChannel |
ActiveIOTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
ActiveIOTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Create a Channel to a remote Node - e.g. |
Uses of TransportChannel in org.activemq.transport.composite |
---|
Classes in org.activemq.transport.composite that implement TransportChannel | |
---|---|
class |
CompositeTransportChannel
A Compsite implementation of a TransportChannel |
Fields in org.activemq.transport.composite declared as TransportChannel | |
---|---|
protected TransportChannel |
CompositeTransportChannel.channel
|
Methods in org.activemq.transport.composite that return TransportChannel | |
---|---|
TransportChannel |
CompositeTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
|
TransportChannel |
CompositeTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
|
TransportChannel |
CompositeTransportChannel.getChannel()
Access to the current channel if one is active |
Uses of TransportChannel in org.activemq.transport.jabber |
---|
Classes in org.activemq.transport.jabber that implement TransportChannel | |
---|---|
class |
JabberTransportChannel
A transport for using Jabber (XMPP) to talk to ActiveMQ |
Methods in org.activemq.transport.jabber that return TransportChannel | |
---|---|
TransportChannel |
JabberTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
|
TransportChannel |
JabberTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
|
Uses of TransportChannel in org.activemq.transport.multicast |
---|
Classes in org.activemq.transport.multicast that implement TransportChannel | |
---|---|
class |
MulticastTransportChannel
A multicast implementation of a TransportChannel |
Methods in org.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.activemq.transport.peer |
---|
Classes in org.activemq.transport.peer that implement TransportChannel | |
---|---|
class |
PeerTransportChannel
A PeerTransportChannel creates an embedded broker and networks peers together to form a P-2-P network. |
Fields in org.activemq.transport.peer declared as TransportChannel | |
---|---|
protected TransportChannel |
PeerTransportChannel.channel
|
Methods in org.activemq.transport.peer that return TransportChannel | |
---|---|
TransportChannel |
PeerTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a Channel |
TransportChannel |
PeerTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Create a peer channel |
Uses of TransportChannel in org.activemq.transport.reliable |
---|
Classes in org.activemq.transport.reliable that implement TransportChannel | |
---|---|
class |
ReliableTransportChannel
A Compsite implementation of a TransportChannel |
Methods in org.activemq.transport.reliable that return TransportChannel | |
---|---|
TransportChannel |
ReliableTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a TransportChannel |
protected TransportChannel |
ReliableTransportChannel.getEstablishedChannel(long timeout)
|
Methods in org.activemq.transport.reliable with parameters of type TransportChannel | |
---|---|
protected void |
ReliableTransportChannel.doReconnect(TransportChannel currentChannel,
long timeout)
|
Uses of TransportChannel in org.activemq.transport.remote |
---|
Classes in org.activemq.transport.remote that implement TransportChannel | |
---|---|
class |
RemoteTransportChannel
A RemoteTransportChannel creates an embedded broker that creates a remote connection to another
broker. |
Methods in org.activemq.transport.remote that return TransportChannel | |
---|---|
TransportChannel |
RemoteTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a Channel |
TransportChannel |
RemoteTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Create a peer channel |
Uses of TransportChannel in org.activemq.transport.stomp |
---|
Classes in org.activemq.transport.stomp that implement TransportChannel | |
---|---|
class |
StompTransportChannel
A transport for using Stomp to talk to ActiveMQ |
Methods in org.activemq.transport.stomp that return TransportChannel | |
---|---|
TransportChannel |
StompTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
|
TransportChannel |
StompTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
|
Uses of TransportChannel in org.activemq.transport.tcp |
---|
Classes in org.activemq.transport.tcp that implement TransportChannel | |
---|---|
class |
TcpTransportChannel
A tcp implementation of a TransportChannel |
Methods in org.activemq.transport.tcp that return TransportChannel | |
---|---|
TransportChannel |
SfTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
TcpTransportChannelFactory.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. |
TransportChannel |
TcpTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Create a Channel to a remote Node - e.g. |
Uses of TransportChannel in org.activemq.transport.udp |
---|
Classes in org.activemq.transport.udp that implement TransportChannel | |
---|---|
class |
UdpTransportChannel
A UDP implementation of a TransportChannel |
Methods in org.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.activemq.transport.vm |
---|
Classes in org.activemq.transport.vm that implement TransportChannel | |
---|---|
class |
VmTransportChannel
A VM implementation of a TransportChannel |
Methods in org.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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |