|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||
| Packages that use TransportServerChannel | |
| 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.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.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 |
| org.codehaus.activemq.transport.zeroconf | A discovery agent using Zeroconf via the jmDNS library |
| Uses of TransportServerChannel in org.codehaus.activemq.broker |
| Methods in org.codehaus.activemq.broker that return TransportServerChannel | |
TransportServerChannel |
BrokerConnector.getServerChannel()
|
| Methods in org.codehaus.activemq.broker with parameters of type TransportServerChannel | |
void |
BrokerContainer.addConnector(TransportServerChannel transportConnector)
Adds a new transport connector for the given transportConnector |
| Uses of TransportServerChannel in org.codehaus.activemq.broker.impl |
| Methods in org.codehaus.activemq.broker.impl that return TransportServerChannel | |
TransportServerChannel |
BrokerConnectorImpl.getServerChannel()
|
protected static TransportServerChannel |
BrokerConnectorImpl.createTransportServerChannel(WireFormat wireFormat,
String bindAddress)
Factory method ot create a transport channel |
| Methods in org.codehaus.activemq.broker.impl with parameters of type TransportServerChannel | |
void |
BrokerContainerImpl.addConnector(TransportServerChannel transportConnector)
|
| Constructors in org.codehaus.activemq.broker.impl with parameters of type TransportServerChannel | |
BrokerConnectorImpl(BrokerContainer container,
TransportServerChannel serverChannel)
|
|
| Uses of TransportServerChannel in org.codehaus.activemq.transport |
| Classes in org.codehaus.activemq.transport that implement TransportServerChannel | |
class |
TransportServerChannelSupport
An abstract base class useful for implementation inheritence |
| Methods in org.codehaus.activemq.transport that return TransportServerChannel | |
static TransportServerChannel |
TransportServerChannelProvider.create(WireFormat wireFormat,
URI bindAddress)
Create a Channel used for the Broker to listen to remove connections |
static TransportServerChannel |
TransportServerChannelProvider.newInstance(WireFormat wireFormat,
String bindAddress)
Create a Channel used for the Broker to listen to remove connections |
TransportServerChannel |
TransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
| Uses of TransportServerChannel in org.codehaus.activemq.transport.ember |
| Classes in org.codehaus.activemq.transport.ember that implement TransportServerChannel | |
class |
EmberTransportServerChannel
An EmberIO (using NIO) implementation of TransportServerChannel |
| Methods in org.codehaus.activemq.transport.ember that return TransportServerChannel | |
TransportServerChannel |
EmberTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
| Uses of TransportServerChannel in org.codehaus.activemq.transport.gnet |
| Classes in org.codehaus.activemq.transport.gnet that implement TransportServerChannel | |
class |
GTransportServerChannel
An implementation of TransportServerChannel which uses the Geronimo network layer for connectivity. |
| Methods in org.codehaus.activemq.transport.gnet that return TransportServerChannel | |
TransportServerChannel |
GTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
| Uses of TransportServerChannel in org.codehaus.activemq.transport.http |
| Classes in org.codehaus.activemq.transport.http that implement TransportServerChannel | |
class |
HttpTransportConnector
|
| Methods in org.codehaus.activemq.transport.http that return TransportServerChannel | |
TransportServerChannel |
HttpTransportConnectorFactory.create(WireFormat wireFormat,
URI bindAddress)
|
| Uses of TransportServerChannel in org.codehaus.activemq.transport.jgroups |
| Classes in org.codehaus.activemq.transport.jgroups that implement TransportServerChannel | |
class |
JGroupsTransportServerChannel
A JGroups implementation of TransportServerChannel |
| Methods in org.codehaus.activemq.transport.jgroups that return TransportServerChannel | |
TransportServerChannel |
JGroupsTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
|
| Uses of TransportServerChannel in org.codehaus.activemq.transport.jrms |
| Classes in org.codehaus.activemq.transport.jrms that implement TransportServerChannel | |
class |
JRMSTransportServerChannel
A JRMS implementation of TransportServerChannel |
| Methods in org.codehaus.activemq.transport.jrms that return TransportServerChannel | |
TransportServerChannel |
JRMSTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
| Uses of TransportServerChannel in org.codehaus.activemq.transport.jxta |
| Classes in org.codehaus.activemq.transport.jxta that implement TransportServerChannel | |
class |
JxtaTransportServerChannel
Binds to a well known port and listens for Sockets ... |
| Methods in org.codehaus.activemq.transport.jxta that return TransportServerChannel | |
TransportServerChannel |
JxtaTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
| Uses of TransportServerChannel in org.codehaus.activemq.transport.multicast |
| Classes in org.codehaus.activemq.transport.multicast that implement TransportServerChannel | |
class |
MulticastTransportServerChannel
A Multicast implementation of TransportServerChannel |
| Methods in org.codehaus.activemq.transport.multicast that return TransportServerChannel | |
TransportServerChannel |
MulticastTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
| Uses of TransportServerChannel in org.codehaus.activemq.transport.tcp |
| Classes in org.codehaus.activemq.transport.tcp that implement TransportServerChannel | |
class |
TcpTransportServerChannel
Binds to a well known port and listens for Sockets ... |
| Methods in org.codehaus.activemq.transport.tcp that return TransportServerChannel | |
TransportServerChannel |
TcpTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
TransportServerChannel |
SfTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
| Uses of TransportServerChannel in org.codehaus.activemq.transport.udp |
| Classes in org.codehaus.activemq.transport.udp that implement TransportServerChannel | |
class |
UdpTransportServerChannel
A UDP implementation of TransportServerChannel |
| Methods in org.codehaus.activemq.transport.udp that return TransportServerChannel | |
TransportServerChannel |
UdpTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
| Uses of TransportServerChannel in org.codehaus.activemq.transport.vm |
| Classes in org.codehaus.activemq.transport.vm that implement TransportServerChannel | |
class |
VmTransportServerChannel
A VM implementation of TransportServerChannel |
| Methods in org.codehaus.activemq.transport.vm that return TransportServerChannel | |
TransportServerChannel |
VmTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
| Uses of TransportServerChannel in org.codehaus.activemq.transport.zeroconf |
| Classes in org.codehaus.activemq.transport.zeroconf that implement TransportServerChannel | |
class |
ZeroconfTransportConnector
A Zeroconf implementation of TransportServerChannel |
| Methods in org.codehaus.activemq.transport.zeroconf that return TransportServerChannel | |
TransportServerChannel |
ZeroconfTransportConnectorFactory.create(WireFormat wireFormat,
URI bindAddress)
|
|
|||||||||||
| PREV NEXT | FRAMES NO FRAMES | ||||||||||