Uses of Interface
org.apache.activemq.wireformat.WireFormat
-
Packages that use WireFormat Package Description org.apache.activemq.broker.util Some utility Broker Pluginsorg.apache.activemq.command Command objects used via the Command Pattern to communicate among nodesorg.apache.activemq.openwire org.apache.activemq.store.jdbc Message persistence implemented using JDBCorg.apache.activemq.store.journal Message persistence using a high performance transaction log via the Journal interface.org.apache.activemq.transport The core Transport abstraction and support classesorg.apache.activemq.transport.amqp A Broker side implementation of the AMQP 3.1 protocol - see http://amqp.org/org.apache.activemq.transport.auto org.apache.activemq.transport.auto.nio 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.http A transport using the HTTP protocol to allow ActiveMQ to tunnel through firewalls.org.apache.activemq.transport.https A transport using the HTTPS protocol (built on top of the HTTP transport) to allow ActiveMQ to tunnel through firewalls using SSL.org.apache.activemq.transport.mock A mock implementation of the Transport layer useful for testingorg.apache.activemq.transport.mqtt A Broker side implementation of the MQTT 3.1 protocol - see http://mqtt.org/org.apache.activemq.transport.multicast A Multicast based Transport implementation.org.apache.activemq.transport.nio org.apache.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.apache.activemq.transport.tcp TCP/IP based Transport implementation.org.apache.activemq.transport.udp UDP based Transport implementation.org.apache.activemq.transport.util org.apache.activemq.transport.vm In-JVM based Transport implementation.org.apache.activemq.transport.ws org.apache.activemq.transport.xstream org.apache.activemq.wireformat An API for WireFormats which are used to turn object into bytes and bytes into objects. -
-
Uses of WireFormat in org.apache.activemq.broker.util
Fields in org.apache.activemq.broker.util declared as WireFormat Modifier and Type Field Description protected WireFormat
UDPTraceBrokerPlugin. wireFormat
Methods in org.apache.activemq.broker.util that return WireFormat Modifier and Type Method Description protected WireFormat
UDPTraceBrokerPlugin. createWireFormat()
WireFormat
UDPTraceBrokerPlugin. getWireFormat()
Methods in org.apache.activemq.broker.util with parameters of type WireFormat Modifier and Type Method Description void
UDPTraceBrokerPlugin. setWireFormat(WireFormat wireFormat)
-
Uses of WireFormat in org.apache.activemq.command
Methods in org.apache.activemq.command with parameters of type WireFormat Modifier and Type Method Description void
MarshallAware. afterMarshall(WireFormat wireFormat)
void
Message. afterMarshall(WireFormat wireFormat)
void
WireFormatInfo. afterMarshall(WireFormat wireFormat)
void
MarshallAware. afterUnmarshall(WireFormat wireFormat)
void
Message. afterUnmarshall(WireFormat wireFormat)
void
WireFormatInfo. afterUnmarshall(WireFormat wireFormat)
void
ActiveMQMapMessage. beforeMarshall(WireFormat wireFormat)
void
ActiveMQObjectMessage. beforeMarshall(WireFormat wireFormat)
void
ActiveMQTextMessage. beforeMarshall(WireFormat wireFormat)
void
MarshallAware. beforeMarshall(WireFormat wireFormat)
void
Message. beforeMarshall(WireFormat wireFormat)
void
WireFormatInfo. beforeMarshall(WireFormat wireFormat)
void
MarshallAware. beforeUnmarshall(WireFormat wireFormat)
void
Message. beforeUnmarshall(WireFormat wireFormat)
void
WireFormatInfo. beforeUnmarshall(WireFormat wireFormat)
ByteSequence
WireFormatInfo. getCachedMarshalledForm(WireFormat wireFormat)
void
WireFormatInfo. setCachedMarshalledForm(WireFormat wireFormat, ByteSequence data)
-
Uses of WireFormat in org.apache.activemq.openwire
Classes in org.apache.activemq.openwire that implement WireFormat Modifier and Type Class Description class
OpenWireFormat
Methods in org.apache.activemq.openwire that return WireFormat Modifier and Type Method Description WireFormat
OpenWireFormatFactory. createWireFormat()
-
Uses of WireFormat in org.apache.activemq.store.jdbc
Fields in org.apache.activemq.store.jdbc declared as WireFormat Modifier and Type Field Description protected WireFormat
JDBCMessageStore. wireFormat
Methods in org.apache.activemq.store.jdbc that return WireFormat Modifier and Type Method Description WireFormat
JDBCPersistenceAdapter. getWireFormat()
Methods in org.apache.activemq.store.jdbc with parameters of type WireFormat Modifier and Type Method Description void
JDBCPersistenceAdapter. setWireFormat(WireFormat wireFormat)
Constructors in org.apache.activemq.store.jdbc with parameters of type WireFormat Constructor Description JDBCMessageStore(JDBCPersistenceAdapter persistenceAdapter, JDBCAdapter adapter, WireFormat wireFormat, ActiveMQDestination destination, ActiveMQMessageAudit audit)
JDBCPersistenceAdapter(DataSource ds, WireFormat wireFormat)
JDBCTopicMessageStore(JDBCPersistenceAdapter persistenceAdapter, JDBCAdapter adapter, WireFormat wireFormat, ActiveMQTopic topic, ActiveMQMessageAudit audit)
-
Uses of WireFormat in org.apache.activemq.store.journal
Methods in org.apache.activemq.store.journal that return WireFormat Modifier and Type Method Description WireFormat
JournalPersistenceAdapter. getWireFormat()
-
Uses of WireFormat in org.apache.activemq.transport
Fields in org.apache.activemq.transport declared as WireFormat Modifier and Type Field Description protected WireFormat
AbstractInactivityMonitor. wireFormat
Methods in org.apache.activemq.transport that return WireFormat Modifier and Type Method Description protected WireFormat
TransportFactory. createWireFormat(Map<String,String> options)
WireFormat
Transport. getWireFormat()
Retrieves the WireFormat instance associated with this Transport instance.WireFormat
TransportFilter. getWireFormat()
Methods in org.apache.activemq.transport with parameters of type WireFormat Modifier and Type Method Description Transport
TransportFactory. 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.Transport
TransportFactory. 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.protected Transport
TransportFactory. createTransport(URI location, WireFormat wf)
Factory method to create a new transportTransport
TransportFactory. 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 WireFormat Constructor Description AbstractInactivityMonitor(Transport next, WireFormat wireFormat)
InactivityMonitor(Transport next, WireFormat wireFormat)
MarshallingTransportFilter(Transport next, WireFormat localWireFormat, WireFormat remoteWireFormat)
-
Uses of WireFormat in org.apache.activemq.transport.amqp
Classes in org.apache.activemq.transport.amqp that implement WireFormat Modifier and Type Class Description class
AmqpWireFormat
Methods in org.apache.activemq.transport.amqp that return WireFormat Modifier and Type Method Description WireFormat
AmqpWireFormatFactory. createWireFormat()
WireFormat
AmqpWSTransport. getWireFormat()
Methods in org.apache.activemq.transport.amqp with parameters of type WireFormat Modifier and Type Method Description Transport
AmqpNioTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
Transport
AmqpSslTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
Transport
AmqpTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
Transport
AmqpWSTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
protected Transport
AmqpNioTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)
protected Transport
AmqpSslTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)
protected Transport
AmqpTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)
protected Transport
AmqpWSTransportFactory. createInactivityMonitor(AmqpTransportFilter transport, WireFormat format)
protected TcpTransport
AmqpNioSslTransportFactory. createTcpTransport(WireFormat wf, SocketFactory socketFactory, URI location, URI localLocation)
protected TcpTransport
AmqpNioTransportFactory. createTcpTransport(WireFormat wf, SocketFactory socketFactory, URI location, URI localLocation)
TcpTransport
AmqpNioSslTransportFactory. createTransport(WireFormat wireFormat, Socket socket, SSLEngine engine, TcpTransport.InitBuffer initBuffer, ByteBuffer inputBuffer)
TcpTransport
AmqpNioTransportFactory. createTransport(WireFormat wireFormat, Socket socket, TcpTransport.InitBuffer initBuffer)
protected Transport
AmqpWSTransportFactory. createTransport(URI location, WireFormat wireFormat)
Factory method to create a new transportTransport
AmqpNioTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)
Transport
AmqpSslTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)
Transport
AmqpTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)
Constructors in org.apache.activemq.transport.amqp with parameters of type WireFormat Constructor Description AmqpInactivityMonitor(Transport next, WireFormat wireFormat)
AmqpNioSslTransport(WireFormat wireFormat, Socket socket)
AmqpNioSslTransport(WireFormat wireFormat, Socket socket, SSLEngine engine, TcpTransport.InitBuffer initBuffer, ByteBuffer inputBuffer)
AmqpNioSslTransport(WireFormat wireFormat, SocketFactory socketFactory, URI remoteLocation, URI localLocation)
AmqpNioTransport(WireFormat wireFormat, Socket socket)
AmqpNioTransport(WireFormat wireFormat, Socket socket, TcpTransport.InitBuffer initBuffer)
AmqpNioTransport(WireFormat wireFormat, SocketFactory socketFactory, URI remoteLocation, URI localLocation)
AmqpTransportFilter(Transport next, WireFormat wireFormat, BrokerService brokerService)
AmqpWSTransport(URI location, WireFormat wireFormat)
Create a new Transport instance. -
Uses of WireFormat in org.apache.activemq.transport.auto
Methods in org.apache.activemq.transport.auto with parameters of type WireFormat Modifier and Type Method Description protected TcpTransport
AutoSslTransportServer. createTransport(Socket socket, WireFormat format, TcpTransportFactory detectedTransportFactory, TcpTransport.InitBuffer initBuffer)
Used to create Transports for this server.protected TcpTransport
AutoTcpTransportServer. createTransport(Socket socket, WireFormat format, TcpTransportFactory detectedTransportFactory, TcpTransport.InitBuffer initBuffer)
-
Uses of WireFormat in org.apache.activemq.transport.auto.nio
Methods in org.apache.activemq.transport.auto.nio with parameters of type WireFormat Modifier and Type Method Description protected TcpTransport
AutoNIOSSLTransportServer. createTransport(Socket socket, WireFormat format)
protected Transport
AutoNIOSSLTransportServer. createTransport(Socket socket, WireFormat format, SSLEngine engine, TcpTransport.InitBuffer initBuffer, ByteBuffer inputBuffer, TcpTransportFactory detectedFactory)
Constructors in org.apache.activemq.transport.auto.nio with parameters of type WireFormat Constructor Description AutoNIOTransport(WireFormat wireFormat, Socket socket)
AutoNIOTransport(WireFormat format, Socket socket, TcpTransport.InitBuffer initBuffer)
AutoNIOTransport(WireFormat wireFormat, SocketFactory socketFactory, URI remoteLocation, URI localLocation)
-
Uses of WireFormat in org.apache.activemq.transport.failover
Methods in org.apache.activemq.transport.failover that return WireFormat Modifier and Type Method Description WireFormat
FailoverTransport. getWireFormat()
-
Uses of WireFormat in org.apache.activemq.transport.fanout
Methods in org.apache.activemq.transport.fanout that return WireFormat Modifier and Type Method Description WireFormat
FanoutTransport. getWireFormat()
-
Uses of WireFormat in org.apache.activemq.transport.http
Methods in org.apache.activemq.transport.http that return WireFormat Modifier and Type Method Description WireFormat
BlockingQueueTransport. getWireFormat()
WireFormat
HttpClientTransport. getWireFormat()
Methods in org.apache.activemq.transport.http with parameters of type WireFormat Modifier and Type Method Description protected TextWireFormat
HttpTransportFactory. asTextWireFormat(WireFormat wireFormat)
Transport
HttpTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
protected Transport
HttpTransportFactory. createTransport(URI location, WireFormat wf)
Transport
HttpTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)
-
Uses of WireFormat in org.apache.activemq.transport.https
Methods in org.apache.activemq.transport.https with parameters of type WireFormat Modifier and Type Method Description Transport
HttpsTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
protected Transport
HttpsTransportFactory. createTransport(URI location, WireFormat wf)
-
Uses of WireFormat in org.apache.activemq.transport.mock
Methods in org.apache.activemq.transport.mock that return WireFormat Modifier and Type Method Description WireFormat
MockTransport. getWireFormat()
-
Uses of WireFormat in org.apache.activemq.transport.mqtt
Classes in org.apache.activemq.transport.mqtt that implement WireFormat Modifier and Type Class Description class
MQTTWireFormat
Implements marshalling and unmarsalling the MQTT protocol.Methods in org.apache.activemq.transport.mqtt that return WireFormat Modifier and Type Method Description WireFormat
MQTTWireFormatFactory. createWireFormat()
Methods in org.apache.activemq.transport.mqtt with parameters of type WireFormat Modifier and Type Method Description Transport
MQTTNIOTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
Transport
MQTTSslTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
Transport
MQTTTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
protected Transport
MQTTNIOTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)
protected Transport
MQTTSslTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)
protected Transport
MQTTTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)
protected TcpTransport
MQTTNIOSSLTransportFactory. createTcpTransport(WireFormat wf, SocketFactory socketFactory, URI location, URI localLocation)
protected TcpTransport
MQTTNIOTransportFactory. createTcpTransport(WireFormat wf, SocketFactory socketFactory, URI location, URI localLocation)
TcpTransport
MQTTNIOSSLTransportFactory. createTransport(WireFormat wireFormat, Socket socket, SSLEngine engine, TcpTransport.InitBuffer initBuffer, ByteBuffer inputBuffer)
TcpTransport
MQTTNIOTransportFactory. createTransport(WireFormat wireFormat, Socket socket, TcpTransport.InitBuffer initBuffer)
Transport
MQTTNIOTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)
Transport
MQTTSslTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)
Transport
MQTTTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)
Constructors in org.apache.activemq.transport.mqtt with parameters of type WireFormat Constructor Description MQTTInactivityMonitor(Transport next, WireFormat wireFormat)
MQTTNIOSSLTransport(WireFormat wireFormat, Socket socket)
MQTTNIOSSLTransport(WireFormat wireFormat, Socket socket, SSLEngine engine, TcpTransport.InitBuffer initBuffer, ByteBuffer inputBuffer)
MQTTNIOSSLTransport(WireFormat wireFormat, SocketFactory socketFactory, URI remoteLocation, URI localLocation)
MQTTNIOTransport(WireFormat wireFormat, Socket socket)
MQTTNIOTransport(WireFormat wireFormat, Socket socket, TcpTransport.InitBuffer initBuffer)
MQTTNIOTransport(WireFormat wireFormat, SocketFactory socketFactory, URI remoteLocation, URI localLocation)
MQTTTransportFilter(Transport next, WireFormat wireFormat, BrokerService brokerService)
-
Uses of WireFormat in org.apache.activemq.transport.multicast
Methods in org.apache.activemq.transport.multicast with parameters of type WireFormat Modifier and Type Method Description protected Transport
MulticastTransportFactory. createTransport(URI location, WireFormat wf)
-
Uses of WireFormat in org.apache.activemq.transport.nio
Methods in org.apache.activemq.transport.nio with parameters of type WireFormat Modifier and Type Method Description Transport
NIOSSLTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
Overriding to allow for proper configuration through reflection but delegate to get common configurationprotected TcpTransport
NIOTransportFactory. createTcpTransport(WireFormat wf, SocketFactory socketFactory, URI location, URI localLocation)
protected Transport
NIOSSLTransportFactory. createTransport(URI location, WireFormat wf)
Overriding to use SslTransports.TcpTransport
NIOSSLTransportFactory. createTransport(WireFormat wireFormat, Socket socket, SSLEngine engine, TcpTransport.InitBuffer initBuffer, ByteBuffer inputBuffer)
protected Transport
NIOSSLTransportServer. createTransport(Socket socket, WireFormat format)
TcpTransport
NIOTransportFactory. createTransport(WireFormat wireFormat, Socket socket, TcpTransport.InitBuffer initBuffer)
Constructors in org.apache.activemq.transport.nio with parameters of type WireFormat Constructor Description AutoInitNioSSLTransport(WireFormat wireFormat, Socket socket)
AutoInitNioSSLTransport(WireFormat wireFormat, SocketFactory socketFactory, URI remoteLocation, URI localLocation)
NIOSSLTransport(WireFormat wireFormat, Socket socket, SSLEngine engine, TcpTransport.InitBuffer initBuffer, ByteBuffer inputBuffer)
NIOSSLTransport(WireFormat wireFormat, SocketFactory socketFactory, URI remoteLocation, URI localLocation)
NIOTransport(WireFormat wireFormat, Socket socket)
NIOTransport(WireFormat format, Socket socket, TcpTransport.InitBuffer initBuffer)
NIOTransport(WireFormat wireFormat, SocketFactory socketFactory, URI remoteLocation, URI localLocation)
-
Uses of WireFormat in org.apache.activemq.transport.stomp
Classes in org.apache.activemq.transport.stomp that implement WireFormat Modifier and Type Class Description class
StompWireFormat
Implements marshalling and unmarsalling the Stomp protocol.Methods in org.apache.activemq.transport.stomp that return WireFormat Modifier and Type Method Description WireFormat
StompWireFormatFactory. createWireFormat()
Methods in org.apache.activemq.transport.stomp with parameters of type WireFormat Modifier and Type Method Description Transport
StompNIOTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
Transport
StompSslTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
Transport
StompTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
protected Transport
StompNIOTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)
protected Transport
StompSslTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)
protected Transport
StompTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)
protected TcpTransport
StompNIOSSLTransportFactory. createTcpTransport(WireFormat wf, SocketFactory socketFactory, URI location, URI localLocation)
protected TcpTransport
StompNIOTransportFactory. createTcpTransport(WireFormat wf, SocketFactory socketFactory, URI location, URI localLocation)
TcpTransport
StompNIOSSLTransportFactory. createTransport(WireFormat wireFormat, Socket socket, SSLEngine engine, TcpTransport.InitBuffer initBuffer, ByteBuffer inputBuffer)
TcpTransport
StompNIOTransportFactory. createTransport(WireFormat wireFormat, Socket socket, TcpTransport.InitBuffer initBuffer)
SslTransport
StompSslTransportFactory. createTransport(WireFormat wireFormat, Socket socket, TcpTransport.InitBuffer initBuffer)
Transport
StompNIOTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)
Transport
StompSslTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)
Transport
StompTransportFactory. serverConfigure(Transport transport, WireFormat format, HashMap options)
Constructors in org.apache.activemq.transport.stomp with parameters of type WireFormat Constructor Description StompInactivityMonitor(Transport next, WireFormat wireFormat)
StompNIOSSLTransport(WireFormat wireFormat, Socket socket)
StompNIOSSLTransport(WireFormat wireFormat, Socket socket, SSLEngine engine, TcpTransport.InitBuffer initBuffer, ByteBuffer inputBuffer)
StompNIOSSLTransport(WireFormat wireFormat, SocketFactory socketFactory, URI remoteLocation, URI localLocation)
StompNIOTransport(WireFormat wireFormat, Socket socket)
StompNIOTransport(WireFormat wireFormat, Socket socket, TcpTransport.InitBuffer initBuffer)
StompNIOTransport(WireFormat wireFormat, SocketFactory socketFactory, URI remoteLocation, URI localLocation)
StompTransportFilter(Transport next, WireFormat wireFormat, BrokerContext brokerContext)
-
Uses of WireFormat in org.apache.activemq.transport.tcp
Fields in org.apache.activemq.transport.tcp declared as WireFormat Modifier and Type Field Description protected WireFormat
TcpTransport. wireFormat
Methods in org.apache.activemq.transport.tcp that return WireFormat Modifier and Type Method Description WireFormat
TcpTransport. getWireFormat()
Methods in org.apache.activemq.transport.tcp with parameters of type WireFormat Modifier and Type Method Description Transport
SslTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
Overriding to allow for proper configuration through reflection but delegate to get common configurationTransport
TcpTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
protected Transport
TcpTransportFactory. createInactivityMonitor(Transport transport, WireFormat format)
protected TcpTransport
TcpTransportFactory. createTcpTransport(WireFormat wf, SocketFactory socketFactory, URI location, URI localLocation)
Allows subclasses of TcpTransportFactory to provide a create custom TcpTransport instances.protected Transport
SslTransportFactory. createTransport(URI location, WireFormat wf)
Overriding to use SslTransports.SslTransport
SslTransportFactory. createTransport(WireFormat wireFormat, Socket socket, TcpTransport.InitBuffer initBuffer)
protected Transport
SslTransportServer. createTransport(Socket socket, WireFormat format)
Used to create Transports for this server.protected Transport
TcpTransportFactory. createTransport(URI location, WireFormat wf)
TcpTransport
TcpTransportFactory. createTransport(WireFormat wireFormat, Socket socket, SSLEngine engine, TcpTransport.InitBuffer initBuffer, ByteBuffer inputBuffer)
TcpTransport
TcpTransportFactory. createTransport(WireFormat wireFormat, Socket socket, TcpTransport.InitBuffer initBuffer)
protected Transport
TcpTransportServer. createTransport(Socket socket, WireFormat format)
Allow derived classes to override the Transport implementation that this transport server creates.Constructors in org.apache.activemq.transport.tcp with parameters of type WireFormat Constructor Description SslTransport(WireFormat wireFormat, SSLSocket socket)
Initialize from a ServerSocket.SslTransport(WireFormat wireFormat, SSLSocketFactory socketFactory, URI remoteLocation, URI localLocation, boolean needClientAuth)
Connect to a remote node such as a Broker.SslTransport(WireFormat format, SSLSocket socket, TcpTransport.InitBuffer initBuffer)
TcpTransport(WireFormat wireFormat, Socket socket)
Initialize from a server SocketTcpTransport(WireFormat wireFormat, Socket socket, TcpTransport.InitBuffer initBuffer)
TcpTransport(WireFormat wireFormat, SocketFactory socketFactory, URI remoteLocation, URI localLocation)
Connect to a remote Node - e.g.TransportInfo(WireFormat format, Transport transport, TransportFactory transportFactory)
-
Uses of WireFormat in org.apache.activemq.transport.udp
Methods in org.apache.activemq.transport.udp with parameters of type WireFormat Modifier and Type Method Description protected OpenWireFormat
UdpTransportFactory. asOpenWireFormat(WireFormat wf)
Deprecated.Transport
UdpTransportFactory. compositeConfigure(Transport transport, WireFormat format, Map options)
Deprecated.Transport
UdpTransportFactory. configure(Transport transport, WireFormat format, Map options)
Deprecated.protected Transport
UdpTransportFactory. configure(Transport transport, WireFormat format, Map options, boolean acceptServer)
Deprecated.Configures the transportprotected Transport
UdpTransportFactory. configureClientSideNegotiator(Transport transport, WireFormat format, UdpTransport udpTransport)
Deprecated.protected Transport
UdpTransportFactory. createTransport(int port, WireFormat wf)
Deprecated.protected Transport
UdpTransportFactory. createTransport(URI location, WireFormat wf)
Deprecated. -
Uses of WireFormat in org.apache.activemq.transport.util
Classes in org.apache.activemq.transport.util that implement WireFormat Modifier and Type Class Description class
TextWireFormat
Adds the extra methods available to text based wire format implementations -
Uses of WireFormat in org.apache.activemq.transport.vm
Methods in org.apache.activemq.transport.vm that return WireFormat Modifier and Type Method Description WireFormat
VMTransport. getWireFormat()
-
Uses of WireFormat in org.apache.activemq.transport.ws
Methods in org.apache.activemq.transport.ws that return WireFormat Modifier and Type Method Description WireFormat
WSTransportProxy. getWireFormat()
-
Uses of WireFormat in org.apache.activemq.transport.xstream
Classes in org.apache.activemq.transport.xstream that implement WireFormat Modifier and Type Class Description class
XStreamWireFormat
-
Uses of WireFormat in org.apache.activemq.wireformat
Classes in org.apache.activemq.wireformat that implement WireFormat Modifier and Type Class Description class
ObjectStreamWireFormat
A simple implementation which uses Object Stream serialization.Methods in org.apache.activemq.wireformat that return WireFormat Modifier and Type Method Description WireFormat
WireFormatFactory. createWireFormat()
-