|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use WireFormat | |
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.io | |
org.activemq.io.impl | |
org.activemq.store.jdbc | Message persistence implemented using JDBC |
org.activemq.store.journal | Message persistence using a high performance transaction log via the Journal interface. |
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 WireFormat in org.activemq |
Methods in org.activemq that return WireFormat | |
WireFormat |
ActiveMQConnectionFactory.getWireFormat()
|
Methods in org.activemq with parameters of type WireFormat | |
void |
ActiveMQConnectionFactory.setWireFormat(WireFormat wireFormat)
Allows a custom wire format to be used; otherwise the default Java wire format is used which is designed for minimum size and maximum speed on the Java platform |
Uses of WireFormat in org.activemq.broker |
Methods in org.activemq.broker with parameters of type WireFormat | |
void |
BrokerContainer.addConnector(String bindAddress,
WireFormat wireFormat)
Adds a new transport connector for the given bind address and wire format |
Uses of WireFormat in org.activemq.broker.impl |
Methods in org.activemq.broker.impl with parameters of type WireFormat | |
protected static TransportServerChannel |
BrokerConnectorImpl.createTransportServerChannel(WireFormat wireFormat,
String bindAddress)
Factory method ot create a transport channel |
void |
BrokerContainerImpl.addConnector(String bindAddress,
WireFormat wireFormat)
|
Constructors in org.activemq.broker.impl with parameters of type WireFormat | |
BrokerConnectorImpl(BrokerContainer container,
String bindAddress,
WireFormat wireFormat)
Helper constructor for TCP protocol with the given bind address |
Uses of WireFormat in org.activemq.io |
Classes in org.activemq.io that implement WireFormat | |
class |
AbstractWireFormat
Represents a strategy of encoding packets on the wire or on disk using some kind of serialization or wire format. |
class |
TextWireFormat
Represents a text based WireFormat such as one that uses XML packets like the org.activemq.transport.xstream.XStreamWireFormat or the
JabberWireFormat |
Methods in org.activemq.io that return WireFormat | |
WireFormat |
WireFormat.copy()
Creates a new copy of this wire format so it can be used in another thread/context |
WireFormat |
WireFormatLoader.getWireFormat(DataInputStream dataIn)
Create a wire format |
WireFormat |
WireFormatLoader.getPreferedWireFormat()
|
static WireFormat |
WireFormatLoader.getWireFormat(String format)
load a WireFormat by name - e.g. |
Methods in org.activemq.io with parameters of type WireFormat | |
void |
WireFormatLoader.setPreferedWireFormat(WireFormat preferedWireFormat)
|
Constructors in org.activemq.io with parameters of type WireFormat | |
WireFormatLoader(WireFormat prefered)
Construct WireFormatLoader with the prefered WireFormat |
Uses of WireFormat in org.activemq.io.impl |
Classes in org.activemq.io.impl that implement WireFormat | |
class |
AbstractDefaultWireFormat
Default implementation used for Java-Java protocols. |
class |
DefaultWireFormat
This is a stateful AbstractDefaultWireFormat which implements value caching. |
class |
StatelessDefaultWireFormat
Provides a stateless implementation of AbstractDefaultWireFormat. |
Methods in org.activemq.io.impl that return WireFormat | |
WireFormat |
DefaultWireFormat.copy()
|
WireFormat |
StatelessDefaultWireFormat.copy()
|
abstract WireFormat |
AbstractDefaultWireFormat.copy()
|
Uses of WireFormat in org.activemq.store.jdbc |
Fields in org.activemq.store.jdbc declared as WireFormat | |
protected WireFormat |
JDBCMessageStore.wireFormat
|
Methods in org.activemq.store.jdbc that return WireFormat | |
WireFormat |
JDBCPersistenceAdapter.getWireFormat()
|
Methods in org.activemq.store.jdbc with parameters of type WireFormat | |
void |
JDBCPersistenceAdapter.setWireFormat(WireFormat wireFormat)
|
Constructors in org.activemq.store.jdbc with parameters of type WireFormat | |
JDBCPersistenceAdapter(DataSource ds,
WireFormat wireFormat)
|
|
JDBCTopicMessageStore(JDBCPersistenceAdapter persistenceAdapter,
JDBCAdapter adapter,
WireFormat wireFormat,
String destinationName)
|
|
JDBCMessageStore(JDBCPersistenceAdapter persistenceAdapter,
JDBCAdapter adapter,
WireFormat wireFormat,
String destinationName)
|
Uses of WireFormat in org.activemq.store.journal |
Methods in org.activemq.store.journal that return WireFormat | |
WireFormat |
JournalPersistenceAdapter.getWireFormat()
|
Uses of WireFormat in org.activemq.transport |
Fields in org.activemq.transport declared as WireFormat | |
protected WireFormat |
TransportChannelSupport.currentWireFormat
|
Methods in org.activemq.transport that return WireFormat | |
WireFormat |
TransportChannelSupport.getWireFormat()
Get the current wireformat used by this channel |
WireFormat |
TransportChannel.getWireFormat()
Get the current wireformat used by this channel |
Methods in org.activemq.transport with parameters of type WireFormat | |
void |
TransportChannelSupport.setWireFormat(WireFormat wireformat)
set the wire format to be used by this channel |
TransportServerChannel |
TransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
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 |
static TransportChannel |
TransportChannelProvider.create(WireFormat wireFormat,
URI remoteLocation)
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 |
TransportChannelFactory.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. |
TransportChannel |
DiscoveryTransportChannelFactorySupport.create(WireFormat wireFormat,
URI remoteLocation)
|
void |
TransportChannel.setWireFormat(WireFormat wireformat)
set the wire format to be used by this channel |
Constructors in org.activemq.transport with parameters of type WireFormat | |
TransportChannelSupport(WireFormat wf)
|
|
DiscoveryTransportChannel(WireFormat wireFormat,
DiscoveryAgent discoveryAgent)
|
Uses of WireFormat in org.activemq.transport.activeio |
Methods in org.activemq.transport.activeio with parameters of type WireFormat | |
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. |
TransportServerChannel |
ActiveIOTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address O |
Constructors in org.activemq.transport.activeio with parameters of type WireFormat | |
ActiveIOTransportServerChannel(WireFormat wireFormat,
org.activeio.AsyncChannelServer server)
|
|
ActiveIOTransportChannel(WireFormat wireFormat,
org.activeio.AsyncChannel asynchChannel)
|
Uses of WireFormat in org.activemq.transport.composite |
Methods in org.activemq.transport.composite with parameters of type WireFormat | |
TransportChannel |
CompositeTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
|
TransportChannel |
CompositeTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
|
Constructors in org.activemq.transport.composite with parameters of type WireFormat | |
CompositeTransportChannel(WireFormat wireFormat)
|
|
CompositeTransportChannel(WireFormat wireFormat,
List uris)
|
Uses of WireFormat in org.activemq.transport.jabber |
Classes in org.activemq.transport.jabber that implement WireFormat | |
class |
JabberWireFormat
A wire format which uses XMPP format of messages |
Methods in org.activemq.transport.jabber that return WireFormat | |
WireFormat |
JabberWireFormat.copy()
|
Methods in org.activemq.transport.jabber with parameters of type WireFormat | |
TransportServerChannel |
JabberTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
|
TransportChannel |
JabberTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
|
TransportChannel |
JabberTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
|
Uses of WireFormat in org.activemq.transport.multicast |
Methods in org.activemq.transport.multicast with parameters of type WireFormat | |
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. |
TransportServerChannel |
MulticastTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
Constructors in org.activemq.transport.multicast with parameters of type WireFormat | |
MulticastTransportServerChannel(WireFormat wireFormat,
URI bindAddr)
|
|
MulticastTransportChannel(WireFormat wireFormat,
URI remoteLocation)
Connect to a remote Node - e.g. |
|
MulticastTransportChannel(WireFormat wireFormat,
MulticastSocket socket)
|
Uses of WireFormat in org.activemq.transport.peer |
Fields in org.activemq.transport.peer declared as WireFormat | |
protected WireFormat |
PeerTransportChannel.wireFormat
|
Methods in org.activemq.transport.peer that return WireFormat | |
WireFormat |
PeerTransportChannel.getWireFormat()
|
Methods in org.activemq.transport.peer with parameters of type WireFormat | |
void |
PeerTransportChannel.setWireFormat(WireFormat wireFormat)
|
TransportChannel |
PeerTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a Channel |
TransportChannel |
PeerTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Create a peer channel |
Constructors in org.activemq.transport.peer with parameters of type WireFormat | |
PeerTransportChannel(WireFormat wireFormat,
String serviceName)
Construct a PeerTransportChannel |
Uses of WireFormat in org.activemq.transport.reliable |
Methods in org.activemq.transport.reliable with parameters of type WireFormat | |
TransportChannel |
ReliableTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a TransportChannel |
Constructors in org.activemq.transport.reliable with parameters of type WireFormat | |
ReliableTransportChannel(WireFormat wireFormat)
Construct this transport |
|
ReliableTransportChannel(WireFormat wireFormat,
List uris)
Construct this transport |
Uses of WireFormat in org.activemq.transport.remote |
Methods in org.activemq.transport.remote that return WireFormat | |
WireFormat |
RemoteTransportChannel.getWireFormat()
|
Methods in org.activemq.transport.remote with parameters of type WireFormat | |
void |
RemoteTransportChannel.setWireFormat(WireFormat wireFormat)
|
TransportChannel |
RemoteTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a Channel |
TransportChannel |
RemoteTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Create a peer channel |
Constructors in org.activemq.transport.remote with parameters of type WireFormat | |
RemoteTransportChannel(WireFormat wireFormat,
String remoteLocation)
Construct a RemoteTransportChannel |
Uses of WireFormat in org.activemq.transport.stomp |
Classes in org.activemq.transport.stomp that implement WireFormat | |
class |
StompWireFormat
Implements the TTMP protocol. |
Methods in org.activemq.transport.stomp that return WireFormat | |
WireFormat |
StompWireFormat.copy()
Creates a new copy of this wire format so it can be used in another thread/context |
Methods in org.activemq.transport.stomp with parameters of type WireFormat | |
TransportServerChannel |
StompTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
|
TransportChannel |
StompTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
|
TransportChannel |
StompTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
|
Uses of WireFormat in org.activemq.transport.tcp |
Methods in org.activemq.transport.tcp that return WireFormat | |
WireFormat |
TcpTransportServerChannel.getWireFormat()
|
Methods in org.activemq.transport.tcp with parameters of type WireFormat | |
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 |
TransportChannel |
SfTransportChannelFactory.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)
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. |
void |
TcpTransportServerChannel.setWireFormat(WireFormat wireFormat)
|
Constructors in org.activemq.transport.tcp with parameters of type WireFormat | |
TcpTransportChannel(WireFormat wireFormat)
Construct basic helpers |
|
TcpTransportChannel(WireFormat wireFormat,
URI remoteLocation)
Connect to a remote Node - e.g. |
|
TcpTransportChannel(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Connect to a remote Node - e.g. |
|
TcpTransportChannel(TcpTransportServerChannel serverChannel,
WireFormat wireFormat,
Socket socket,
Executor executor)
Initialize from a ServerSocket |
|
TcpTransportChannel(WireFormat wireFormat,
Socket socket,
Executor executor)
|
|
TcpTransportServerChannel(WireFormat wireFormat,
URI bindAddr)
Default Constructor |
|
TcpTransportServerChannel(WireFormat wireFormat,
ServerSocket serverSocket)
|
Uses of WireFormat in org.activemq.transport.udp |
Methods in org.activemq.transport.udp with parameters of type WireFormat | |
TransportServerChannel |
UdpTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
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. |
Constructors in org.activemq.transport.udp with parameters of type WireFormat | |
UdpTransportChannel(WireFormat wireFormat)
Construct basic helpers |
|
UdpTransportChannel(WireFormat wireFormat,
URI remoteLocation)
|
|
UdpTransportChannel(WireFormat wireFormat,
URI remoteLocation,
int port)
|
|
UdpTransportChannel(WireFormat wireFormat,
DatagramSocket socket)
|
|
UdpTransportChannel(WireFormat wireFormat,
DatagramSocket socket,
int port)
|
Uses of WireFormat in org.activemq.transport.vm |
Methods in org.activemq.transport.vm with parameters of type WireFormat | |
TransportServerChannel |
VmTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
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 |