Uses of Interface
org.apache.activemq.transport.Transport
-
Packages that use Transport Package Description org.apache.activemq The core JMS client API implementation classes.org.apache.activemq.state org.apache.activemq.transport The core Transport abstraction and support classesorg.apache.activemq.transport.discovery Discovery mechanism to discover brokers and clients.org.apache.activemq.transport.failover Fail-Over Transport which will automatically reconnect to a failed transport and choose one of a list of possible transport implementations to use.org.apache.activemq.transport.fanout Fan-out Transport implementation which ensures that a message is sent to multiple destinations such as to ensure multiple brokers received a message for non-durable topic delivery to improve redundancyorg.apache.activemq.transport.mock A mock implementation of the Transport layer useful for testingorg.apache.activemq.transport.multicast A Multicast based Transport implementation.org.apache.activemq.transport.nio org.apache.activemq.transport.reliable The Reliable transport deals with out of order commands as well as dealing with checking for missed commands and possibly re-requesting the replay of dropped commands.org.apache.activemq.transport.tcp TCP/IP based Transport implementation.org.apache.activemq.transport.udp UDP based Transport implementation.org.apache.activemq.transport.ws -
-
Uses of Transport in org.apache.activemq
Methods in org.apache.activemq that return Transport Modifier and Type Method Description protected TransportActiveMQConnectionFactory. createTransport()Creates a Transport based on this object's connection settings.protected TransportActiveMQSslConnectionFactory. createTransport()Overriding to make special considerations for SSL connections.static TransportTransportLoggerSupport. createTransportLogger(Transport transport)static TransportTransportLoggerSupport. createTransportLogger(Transport transport, String logWriterName, boolean dynamicManagement, boolean startLogging, int jmxPort)TransportTransportLoggerSupport.SPI. createTransportLogger(Transport transport)TransportTransportLoggerSupport.SPI. createTransportLogger(Transport transport, String logWriterName, boolean dynamicManagement, boolean startLogging, int jmxPort)TransportActiveMQConnection. getTransport()TransportActiveMQConnection. getTransportChannel()Methods in org.apache.activemq with parameters of type Transport Modifier and Type Method Description protected ActiveMQConnectionActiveMQConnectionFactory. createActiveMQConnection(Transport transport, JMSStatsImpl stats)protected ActiveMQConnectionActiveMQXAConnectionFactory. createActiveMQConnection(Transport transport, JMSStatsImpl stats)protected ActiveMQConnectionActiveMQXASslConnectionFactory. createActiveMQConnection(Transport transport, JMSStatsImpl stats)static TransportTransportLoggerSupport. createTransportLogger(Transport transport)static TransportTransportLoggerSupport. createTransportLogger(Transport transport, String logWriterName, boolean dynamicManagement, boolean startLogging, int jmxPort)TransportTransportLoggerSupport.SPI. createTransportLogger(Transport transport)TransportTransportLoggerSupport.SPI. createTransportLogger(Transport transport, String logWriterName, boolean dynamicManagement, boolean startLogging, int jmxPort)Constructors in org.apache.activemq with parameters of type Transport Constructor Description ActiveMQConnection(Transport transport, IdGenerator clientIdGenerator, IdGenerator connectionIdGenerator, JMSStatsImpl factoryStats)Construct anActiveMQConnectionActiveMQXAConnection(Transport transport, IdGenerator clientIdGenerator, IdGenerator connectionIdGenerator, JMSStatsImpl factoryStats) -
Uses of Transport in org.apache.activemq.state
Methods in org.apache.activemq.state with parameters of type Transport Modifier and Type Method Description voidConnectionStateTracker. connectionInterruptProcessingComplete(Transport transport, ConnectionId connectionId)voidConnectionStateTracker. restore(Transport transport)protected voidConnectionStateTracker. restoreConsumers(Transport transport, SessionState sessionState)protected voidConnectionStateTracker. restoreProducers(Transport transport, SessionState sessionState)protected voidConnectionStateTracker. restoreSessions(Transport transport, ConnectionState connectionState)protected voidConnectionStateTracker. restoreTempDestinations(Transport transport, ConnectionState connectionState) -
Uses of Transport in org.apache.activemq.transport
Subinterfaces of Transport in org.apache.activemq.transport Modifier and Type Interface Description interfaceCompositeTransportClasses in org.apache.activemq.transport that implement Transport Modifier and Type Class Description classAbstractInactivityMonitorUsed to make sure that commands are arriving periodically from the peer of the transport.classCommandJoinerJoins together of partial commands which were split into individual chunks of data.classInactivityMonitorUsed to make sure that commands are arriving periodically from the peer of the transport.classMarshallingTransportFilterclassMutexTransportThread safe Transport Filter that serializes calls to and from the Transport Stack.classResponseCorrelatorAdds the incrementing sequence number to commands along with performing the correlation of responses to requests to create a blocking request-response semantics.classThreadNameFilterThe thread name filter, modifies the name of the thread during the invocation to a transport.classTransportFilterclassTransportSupportA useful base class for transport implementations.classTransportThreadSupportA useful base class for a transport implementation which has a background reading thread.classWireFormatNegotiatorNegotiates the wire format with a new connectionclassWriteTimeoutFilterThis filter implements write timeouts for socket write operations.Fields in org.apache.activemq.transport declared as Transport Modifier and Type Field Description protected TransportTransportFilter. nextMethods in org.apache.activemq.transport that return Transport Modifier and Type Method Description TransportTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)Similar to configure(...) but this avoid adding in the MutexTransport and ResponseCorrelator transport layers so that the resulting transport can more efficiently be used as part of a composite transport.static TransportTransportFactory. compositeConnect(URI location)Creates a slimmed down transport that is more efficient so that it can be used by composite transports like reliable and HA.static TransportTransportFactory. compositeConnect(URI location, Executor ex)Creates a slimmed down transport that is more efficient so that it can be used by composite transports like reliable and HA.TransportTransportFactory. configure(Transport transport, WireFormat wf, Map options)Fully configures and adds all need transport filters so that the transport can be used by the JMS client.static TransportTransportFactory. connect(URI location)Creates a normal transport.static TransportTransportFactory. connect(URI location, Executor ex)Creates a normal transport.protected TransportTransportFactory. createTransport(URI location, WireFormat wf)Factory method to create a new transportTransportTransportFactory. doCompositeConnect(URI location)TransportTransportFactory. doCompositeConnect(URI location, Executor ex)TransportTransportFactory. doConnect(URI location)TransportTransportFactory. doConnect(URI location, Executor ex)TransportTransportFilter. getNext()TransportTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)Fully configures and adds all need transport filters so that the transport can be used by the ActiveMQ message broker.Methods in org.apache.activemq.transport with parameters of type Transport Modifier and Type Method Description TransportTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)Similar to configure(...) but this avoid adding in the MutexTransport and ResponseCorrelator transport layers so that the resulting transport can more efficiently be used as part of a composite transport.TransportTransportFactory. configure(Transport transport, WireFormat wf, Map options)Fully configures and adds all need transport filters so that the transport can be used by the JMS client.voidTransportAcceptListener. onAccept(Transport transport)TransportTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)Fully configures and adds all need transport filters so that the transport can be used by the ActiveMQ message broker.Constructors in org.apache.activemq.transport with parameters of type Transport Constructor Description AbstractInactivityMonitor(Transport next, WireFormat wireFormat)CommandJoiner(Transport next, OpenWireFormat wireFormat)InactivityMonitor(Transport next, WireFormat wireFormat)MarshallingTransportFilter(Transport next, WireFormat localWireFormat, WireFormat remoteWireFormat)MutexTransport(Transport next)MutexTransport(Transport next, boolean syncOnCommand)ResponseCorrelator(Transport next)ResponseCorrelator(Transport next, IntSequenceGenerator sequenceGenerator)ThreadNameFilter(Transport next)TransportFilter(Transport next)WireFormatNegotiator(Transport next, OpenWireFormat wireFormat, int minimumVersion)NegotiatorWriteTimeoutFilter(Transport next) -
Uses of Transport in org.apache.activemq.transport.discovery
Classes in org.apache.activemq.transport.discovery that implement Transport Modifier and Type Class Description classDiscoveryTransportATransportFilterwhich uses aDiscoveryAgentto discover remote broker instances and dynamically connect to them.Methods in org.apache.activemq.transport.discovery that return Transport Modifier and Type Method Description TransportDiscoveryTransportFactory. createTransport(URISupport.CompositeData compositeData) -
Uses of Transport in org.apache.activemq.transport.failover
Classes in org.apache.activemq.transport.failover that implement Transport Modifier and Type Class Description classFailoverTransportA Transport that is made reliable by being able to fail over to another transport when a transport failure is detected.Methods in org.apache.activemq.transport.failover that return Transport Modifier and Type Method Description TransportFailoverTransportFactory. createTransport(URISupport.CompositeData compositData)TransportFailoverTransportFactory. doCompositeConnect(URI location)TransportFailoverTransportFactory. doConnect(URI location)TransportFailoverTransport. getConnectedTransport()Methods in org.apache.activemq.transport.failover with parameters of type Transport Modifier and Type Method Description voidFailoverTransport. disposeTransport(Transport transport)voidFailoverTransport. handleTransportFailure(Transport failed, IOException e)protected voidFailoverTransport. restoreTransport(Transport t) -
Uses of Transport in org.apache.activemq.transport.fanout
Classes in org.apache.activemq.transport.fanout that implement Transport Modifier and Type Class Description classFanoutTransportA Transport that fans out a connection to multiple brokers.Methods in org.apache.activemq.transport.fanout that return Transport Modifier and Type Method Description TransportFanoutTransportFactory. createTransport(URI location)TransportFanoutTransportFactory. doCompositeConnect(URI location)TransportFanoutTransportFactory. doConnect(URI location) -
Uses of Transport in org.apache.activemq.transport.mock
Classes in org.apache.activemq.transport.mock that implement Transport Modifier and Type Class Description classMockTransportFields in org.apache.activemq.transport.mock declared as Transport Modifier and Type Field Description protected TransportMockTransport. nextMethods in org.apache.activemq.transport.mock that return Transport Modifier and Type Method Description TransportMockTransportFactory. createTransport(URISupport.CompositeData compositData)TransportMockTransportFactory. doCompositeConnect(URI location)TransportMockTransportFactory. doConnect(URI location)TransportMockTransport. getNext()Methods in org.apache.activemq.transport.mock with parameters of type Transport Modifier and Type Method Description voidMockTransport. setNext(Transport next)Constructors in org.apache.activemq.transport.mock with parameters of type Transport Constructor Description MockTransport(Transport next) -
Uses of Transport in org.apache.activemq.transport.multicast
Classes in org.apache.activemq.transport.multicast that implement Transport Modifier and Type Class Description classMulticastTransportA multicast based transport.Methods in org.apache.activemq.transport.multicast that return Transport Modifier and Type Method Description protected TransportMulticastTransportFactory. createTransport(URI location, WireFormat wf) -
Uses of Transport in org.apache.activemq.transport.nio
Classes in org.apache.activemq.transport.nio that implement Transport Modifier and Type Class Description classNIOSSLTransportclassNIOTransportAn implementation of theTransportinterface using raw tcp/ipMethods in org.apache.activemq.transport.nio that return Transport Modifier and Type Method Description TransportNIOSSLTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)Overriding to allow for proper configuration through reflection but delegate to get common configurationprotected TransportNIOSSLTransportFactory. createTransport(URI location, WireFormat wf)Overriding to use SslTransports.protected TransportNIOSSLTransportServer. createTransport(Socket socket, WireFormat format)Methods in org.apache.activemq.transport.nio with parameters of type Transport Modifier and Type Method Description TransportNIOSSLTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)Overriding to allow for proper configuration through reflection but delegate to get common configuration -
Uses of Transport in org.apache.activemq.transport.reliable
Classes in org.apache.activemq.transport.reliable that implement Transport Modifier and Type Class Description classReliableTransportDeprecated.Constructors in org.apache.activemq.transport.reliable with parameters of type Transport Constructor Description ReliableTransport(Transport next, ReplayStrategy replayStrategy)Deprecated.ReliableTransport(Transport next, UdpTransport udpTransport)Deprecated. -
Uses of Transport in org.apache.activemq.transport.tcp
Classes in org.apache.activemq.transport.tcp that implement Transport Modifier and Type Class Description classSslTransportA Transport class that uses SSL and client-side certificate authentication.classTcpTransportAn implementation of theTransportinterface using raw tcp/ipMethods in org.apache.activemq.transport.tcp that return Transport Modifier and Type Method Description TransportSslTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)Overriding to allow for proper configuration through reflection but delegate to get common configurationTransportTcpTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)protected TransportTcpTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)protected TransportSslTransportFactory. createTransport(URI location, WireFormat wf)Overriding to use SslTransports.protected TransportSslTransportServer. createTransport(Socket socket, WireFormat format)Used to create Transports for this server.protected TransportTcpTransportFactory. createTransport(URI location, WireFormat wf)protected TransportTcpTransportServer. createTransport(Socket socket, WireFormat format)Allow derived classes to override the Transport implementation that this transport server creates.Methods in org.apache.activemq.transport.tcp with parameters of type Transport Modifier and Type Method Description TransportSslTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)Overriding to allow for proper configuration through reflection but delegate to get common configurationTransportTcpTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)protected TransportTcpTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)protected booleanTcpTransportFactory. isUseInactivityMonitor(Transport transport)Constructors in org.apache.activemq.transport.tcp with parameters of type Transport Constructor Description TransportInfo(WireFormat format, Transport transport, TransportFactory transportFactory) -
Uses of Transport in org.apache.activemq.transport.udp
Classes in org.apache.activemq.transport.udp that implement Transport Modifier and Type Class Description classResponseRedirectInterceptorclassUdpTransportAn implementation of theTransportinterface using raw UDPMethods in org.apache.activemq.transport.udp that return Transport Modifier and Type Method Description TransportUdpTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)Deprecated.TransportUdpTransportFactory. configure(Transport transport, WireFormat format, Map options)Deprecated.protected TransportUdpTransportFactory. configure(Transport transport, WireFormat format, Map options, boolean acceptServer)Deprecated.Configures the transportprotected TransportUdpTransportFactory. configureClientSideNegotiator(Transport transport, WireFormat format, UdpTransport udpTransport)Deprecated.protected TransportUdpTransportServer. configureTransport(Transport transport)Deprecated.protected TransportUdpTransportFactory. createTransport(int port, WireFormat wf)Deprecated.protected TransportUdpTransportFactory. createTransport(URI location, WireFormat wf)Deprecated.protected TransportUdpTransportServer. createTransport(Command command, DatagramEndpoint endpoint)Deprecated.Methods in org.apache.activemq.transport.udp with parameters of type Transport Modifier and Type Method Description TransportUdpTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)Deprecated.TransportUdpTransportFactory. configure(Transport transport, WireFormat format, Map options)Deprecated.protected TransportUdpTransportFactory. configure(Transport transport, WireFormat format, Map options, boolean acceptServer)Deprecated.Configures the transportprotected TransportUdpTransportFactory. configureClientSideNegotiator(Transport transport, WireFormat format, UdpTransport udpTransport)Deprecated.protected TransportUdpTransportServer. configureTransport(Transport transport)Deprecated.Constructors in org.apache.activemq.transport.udp with parameters of type Transport Constructor Description ResponseRedirectInterceptor(Transport next, UdpTransport transport)UdpTransportServer(URI connectURI, UdpTransport serverTransport, Transport configuredTransport, ReplayStrategy replayStrategy)Deprecated. -
Uses of Transport in org.apache.activemq.transport.ws
Subinterfaces of Transport in org.apache.activemq.transport.ws Modifier and Type Interface Description interfaceWSTransportInterface for a WebSocket Transport which provide hooks that a servlet can use to pass along WebSocket data and events.
-