|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use WireFormat | |
org.codehaus.activemq | The core JMS client implementation classes |
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.gbean | The JMS container using GBeaps for deployment in Geronimo or other JSR 77/88 based containers |
org.codehaus.activemq.message | Message implementations |
org.codehaus.activemq.store.bdb | Message persistence implemented using Berkeley DB Java Edition |
org.codehaus.activemq.store.howl | Message persistence using a high performance transaction log via implemented using Howl whichi is used for short term persistence with longer term storage being used at checkpoints. |
org.codehaus.activemq.store.jdbc | Message persistence implemented using JDBC |
org.codehaus.activemq.store.journal | Message persistence using a high performance transaction log via the Journal interface. |
org.codehaus.activemq.transport | The transport abstraction layer for sending and receiving Packets over a network |
org.codehaus.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.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.jabber | |
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.reliable | |
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.xstream | |
org.codehaus.activemq.transport.zeroconf | A discovery agent using Zeroconf via the jmDNS library |
Uses of WireFormat in org.codehaus.activemq |
Methods in org.codehaus.activemq that return WireFormat | |
WireFormat |
ActiveMQConnectionFactory.getWireFormat()
|
Methods in org.codehaus.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.codehaus.activemq.broker |
Methods in org.codehaus.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.codehaus.activemq.broker.impl |
Methods in org.codehaus.activemq.broker.impl with parameters of type WireFormat | |
void |
BrokerContainerImpl.addConnector(String bindAddress,
WireFormat wireFormat)
|
protected static TransportServerChannel |
BrokerConnectorImpl.createTransportServerChannel(WireFormat wireFormat,
String bindAddress)
Factory method ot create a transport channel |
Constructors in org.codehaus.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.codehaus.activemq.gbean |
Methods in org.codehaus.activemq.gbean that return WireFormat | |
WireFormat |
ActiveMQConnectorGBean.getWireFormat()
|
Methods in org.codehaus.activemq.gbean with parameters of type WireFormat | |
void |
ActiveMQConnectorGBean.setWireFormat(WireFormat wireFormat)
|
Uses of WireFormat in org.codehaus.activemq.message |
Subclasses of WireFormat in org.codehaus.activemq.message | |
class |
DefaultWireFormat
Default implementation used for Java-Java protocols. |
class |
TextWireFormat
Represents a text based WireFormat such as one that uses XML packets like the XStreamWireFormat or the
JabberWireFormat |
Methods in org.codehaus.activemq.message that return WireFormat | |
WireFormat |
DefaultWireFormat.copy()
|
abstract WireFormat |
WireFormat.copy()
Creates a new copy of this wire format so it can be used in another thread/context |
Uses of WireFormat in org.codehaus.activemq.store.bdb |
Methods in org.codehaus.activemq.store.bdb that return WireFormat | |
WireFormat |
BDbPersistenceAdapter.getWireFormat()
|
Methods in org.codehaus.activemq.store.bdb with parameters of type WireFormat | |
void |
BDbPersistenceAdapter.setWireFormat(WireFormat wireFormat)
|
Constructors in org.codehaus.activemq.store.bdb with parameters of type WireFormat | |
BDbTopicMessageStore(com.sleepycat.je.Database database,
com.sleepycat.je.SecondaryDatabase secondaryDatabase,
com.sleepycat.je.SecondaryConfig secondaryConfig,
SequenceNumberCreator sequenceNumberCreator,
WireFormat wireFormat,
com.sleepycat.je.Database subscriptionDatabase)
|
|
BDbPersistenceAdapter(com.sleepycat.je.Environment environment,
WireFormat wireFormat)
|
|
BDbPersistenceAdapter(com.sleepycat.je.Environment environment,
WireFormat wireFormat,
com.sleepycat.je.DatabaseConfig config,
com.sleepycat.je.TransactionConfig transactionConfig)
|
|
BDbMessageStore(com.sleepycat.je.Database database,
com.sleepycat.je.SecondaryDatabase secondaryDatabase,
com.sleepycat.je.SecondaryConfig secondaryConfig,
SequenceNumberCreator sequenceNumberCreator,
WireFormat wireFormat)
|
Uses of WireFormat in org.codehaus.activemq.store.howl |
Constructors in org.codehaus.activemq.store.howl with parameters of type WireFormat | |
HowlMessageStore(HowlPersistenceAdapter adapter,
MessageStore checkpointStore,
org.objectweb.howl.log.Logger transactionLog,
WireFormat wireFormat)
|
Uses of WireFormat in org.codehaus.activemq.store.jdbc |
Fields in org.codehaus.activemq.store.jdbc declared as WireFormat | |
protected WireFormat |
JDBCMessageStore.wireFormat
|
Methods in org.codehaus.activemq.store.jdbc that return WireFormat | |
WireFormat |
JDBCPersistenceAdapter.getWireFormat()
|
Methods in org.codehaus.activemq.store.jdbc with parameters of type WireFormat | |
void |
JDBCPersistenceAdapter.setWireFormat(WireFormat wireFormat)
|
Constructors in org.codehaus.activemq.store.jdbc with parameters of type WireFormat | |
JDBCTopicMessageStore(JDBCPersistenceAdapter persistenceAdapter,
JDBCAdapter adapter,
WireFormat wireFormat,
String destinationName)
|
|
JDBCPreparedTransactionStore(JDBCPersistenceAdapter persistenceAdapter,
JDBCAdapter adapter,
WireFormat wireFormat)
|
|
JDBCPersistenceAdapter(DataSource ds,
WireFormat wireFormat)
|
|
JDBCMessageStore(JDBCPersistenceAdapter persistenceAdapter,
JDBCAdapter adapter,
WireFormat wireFormat,
String destinationName)
|
Uses of WireFormat in org.codehaus.activemq.store.journal |
Methods in org.codehaus.activemq.store.journal that return WireFormat | |
WireFormat |
JournalPersistenceAdapter.getWireFormat()
|
Methods in org.codehaus.activemq.store.journal with parameters of type WireFormat | |
void |
JournalPersistenceAdapter.setWireFormat(WireFormat wireFormat)
|
Uses of WireFormat in org.codehaus.activemq.transport |
Methods in org.codehaus.activemq.transport with parameters of type WireFormat | |
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 |
DiscoveryTransportChannelFactorySupport.create(WireFormat wireFormat,
URI remoteLocation)
|
TransportServerChannel |
TransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
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. |
Constructors in org.codehaus.activemq.transport with parameters of type WireFormat | |
DiscoveryTransportChannel(WireFormat wireFormat,
DiscoveryAgent discoveryAgent)
|
Uses of WireFormat in org.codehaus.activemq.transport.composite |
Fields in org.codehaus.activemq.transport.composite declared as WireFormat | |
protected WireFormat |
CompositeTransportChannel.wireFormat
|
Methods in org.codehaus.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.codehaus.activemq.transport.composite with parameters of type WireFormat | |
CompositeTransportChannel(WireFormat wireFormat)
|
|
CompositeTransportChannel(WireFormat wireFormat,
List uris)
|
Uses of WireFormat in org.codehaus.activemq.transport.ember |
Methods in org.codehaus.activemq.transport.ember with parameters of type WireFormat | |
TransportChannel |
EmberTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
EmberTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Create a Channel to a remote Node - e.g. |
TransportServerChannel |
EmberTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
Constructors in org.codehaus.activemq.transport.ember with parameters of type WireFormat | |
EmberTransportServerChannel(WireFormat wireFormat,
URI bindAddr,
pyrasun.eio.EIOGlobalContext context,
pyrasun.eio.services.EmberServiceController controller)
|
|
EmberTransportChannel(WireFormat wireFormat)
Construct basic helpers |
|
EmberTransportChannel(WireFormat wireFormat,
pyrasun.eio.EIOGlobalContext context,
pyrasun.eio.services.EmberServiceController controller,
pyrasun.eio.services.bytearray.ByteArrayServerClient client)
Connect to a remote Node - e.g. |
Uses of WireFormat in org.codehaus.activemq.transport.gnet |
Methods in org.codehaus.activemq.transport.gnet with parameters of type WireFormat | |
TransportServerChannel |
GTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
TransportChannel |
GTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
GTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Create a Channel to a remote Node - e.g. |
Constructors in org.codehaus.activemq.transport.gnet with parameters of type WireFormat | |
GTransportServerChannel(WireFormat wireFormat,
URI bindAddr,
org.apache.geronimo.network.SelectorManager selectorManager,
org.apache.geronimo.pool.ThreadPool threadPool,
org.apache.geronimo.pool.ClockPool clockPool)
Default Constructor |
|
GTransportChannel(WireFormat wireFormat,
org.apache.geronimo.pool.ThreadPool tp)
Construct basic helpers |
|
GTransportChannel(WireFormat wireFormat,
org.apache.geronimo.network.protocol.Protocol protocol,
org.apache.geronimo.pool.ThreadPool tp)
|
|
GTransportChannel(WireFormat wireFormat,
URI remoteLocation,
URI localLocation,
org.apache.geronimo.network.SelectorManager sm,
org.apache.geronimo.pool.ThreadPool tp,
org.apache.geronimo.pool.ClockPool cp)
|
Uses of WireFormat in org.codehaus.activemq.transport.http |
Methods in org.codehaus.activemq.transport.http with parameters of type WireFormat | |
TransportChannel |
HttpTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
|
TransportChannel |
HttpTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
|
protected TextWireFormat |
HttpTransportChannelFactory.asTextWireFormat(WireFormat wireFormat)
|
TransportServerChannel |
HttpTransportConnectorFactory.create(WireFormat wireFormat,
URI bindAddress)
|
Uses of WireFormat in org.codehaus.activemq.transport.jabber |
Subclasses of WireFormat in org.codehaus.activemq.transport.jabber | |
class |
JabberWireFormat
A wire format which uses XMPP format of messages |
Methods in org.codehaus.activemq.transport.jabber that return WireFormat | |
WireFormat |
JabberWireFormat.copy()
|
Uses of WireFormat in org.codehaus.activemq.transport.jgroups |
Methods in org.codehaus.activemq.transport.jgroups with parameters of type WireFormat | |
TransportServerChannel |
JGroupsTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
|
TransportChannel |
JGroupsTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
|
TransportChannel |
JGroupsTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
|
Constructors in org.codehaus.activemq.transport.jgroups with parameters of type WireFormat | |
JGroupsTransportChannel(WireFormat wireFormat,
org.jgroups.Channel channel,
Executor executor)
|
Uses of WireFormat in org.codehaus.activemq.transport.jrms |
Methods in org.codehaus.activemq.transport.jrms with parameters of type WireFormat | |
TransportServerChannel |
JRMSTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
TransportChannel |
JRMSTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
JRMSTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Create a Channel to a remote Node - e.g. |
Constructors in org.codehaus.activemq.transport.jrms with parameters of type WireFormat | |
JRMSTransportServerChannel(WireFormat wireFormat,
URI bindAddr)
|
|
JRMSTransportChannel(WireFormat wireFormat)
Construct basic helpers |
|
JRMSTransportChannel(WireFormat wireFormat,
URI remoteLocation)
Connect to a remote Node - e.g. |
Uses of WireFormat in org.codehaus.activemq.transport.jxta |
Methods in org.codehaus.activemq.transport.jxta with parameters of type WireFormat | |
TransportServerChannel |
JxtaTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
TransportChannel |
JxtaTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a Channel to a remote Node - e.g. |
TransportChannel |
JxtaTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Create a Channel to a remote Node - e.g. |
Constructors in org.codehaus.activemq.transport.jxta with parameters of type WireFormat | |
JxtaTransportServerChannel(WireFormat wireFormat,
URI bindAddr)
Default Constructor |
|
JxtaTransportChannel(WireFormat wireFormat,
URI remoteLocation)
Connect to a remote Node - e.g. |
|
JxtaTransportChannel(WireFormat wireFormat,
URI remoteLocation,
URI localLocation)
Connect to a remote Node - e.g. |
Uses of WireFormat in org.codehaus.activemq.transport.multicast |
Methods in org.codehaus.activemq.transport.multicast with parameters of type WireFormat | |
TransportServerChannel |
MulticastTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
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. |
Constructors in org.codehaus.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.codehaus.activemq.transport.reliable |
Methods in org.codehaus.activemq.transport.reliable with parameters of type WireFormat | |
TransportChannel |
ReliableTransportChannelFactory.create(WireFormat wireFormat,
URI remoteLocation)
Create a TransportChannel |
Constructors in org.codehaus.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.codehaus.activemq.transport.tcp |
Methods in org.codehaus.activemq.transport.tcp with parameters of type WireFormat | |
TransportServerChannel |
TcpTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
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. |
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. |
TransportServerChannel |
SfTransportServerChannelFactory.create(WireFormat wireFormat,
URI bindAddress)
Bind a ServerChannel to an address |
Constructors in org.codehaus.activemq.transport.tcp with parameters of type WireFormat | |
TcpTransportServerChannel(WireFormat wireFormat,
URI bindAddr)
Default Constructor |
|
TcpTransportServerChannel(WireFormat wireFormat,
ServerSocket serverSocket)
|
|
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(WireFormat wireFormat,
Socket socket,
Executor executor)
|
Uses of WireFormat in org.codehaus.activemq.transport.udp |
Methods in org.codehaus.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.codehaus.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.codehaus.activemq.transport.vm |
Methods in org.codehaus.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. |
Uses of WireFormat in org.codehaus.activemq.transport.xstream |
Uses of WireFormat in org.codehaus.activemq.transport.zeroconf |
Methods in org.codehaus.activemq.transport.zeroconf with parameters of type WireFormat | |
TransportServerChannel |
ZeroconfTransportConnectorFactory.create(WireFormat wireFormat,
URI bindAddress)
|
Constructors in org.codehaus.activemq.transport.zeroconf with parameters of type WireFormat | |
ZeroconfTransportConnector(WireFormat wireFormat,
URI bindAddr)
|
|
|||||||||||
PREV NEXT | FRAMES NO FRAMES |