Uses of Class
org.codehaus.activemq.message.WireFormat

Packages that use WireFormat
org.codehaus.activemq The core JMS client implementation classes  
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.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.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  
 

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.impl
 

Methods in org.codehaus.activemq.broker.impl with parameters of type WireFormat
protected static TransportServerChannel BrokerConnectorImpl.createTransportServerChannel(WireFormat wireFormat, java.lang.String bindAddress)
          Factory method ot create a transport channel
 

Constructors in org.codehaus.activemq.broker.impl with parameters of type WireFormat
BrokerConnectorImpl(BrokerContainer container, java.lang.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 ActiveMQConnector.getWireFormat()
           
 

Methods in org.codehaus.activemq.gbean with parameters of type WireFormat
 void ActiveMQConnector.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.
 

Methods in org.codehaus.activemq.message that return WireFormat
abstract  WireFormat WireFormat.copy()
          Creates a new copy of this wire format so it can be used in another thread/context
 WireFormat DefaultWireFormat.copy()
           
 

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
           
 

Constructors in org.codehaus.activemq.store.jdbc with parameters of type WireFormat
JDBCTopicMessageStore(JDBCAdapter adapter, WireFormat wireFormat, java.lang.String destinationName)
           
JDBCPreparedTransactionStore(JDBCAdapter adapter, WireFormat wireFormat)
           
JDBCPersistenceAdapter(javax.sql.DataSource ds, WireFormat wireFormat)
           
JDBCMessageStore(JDBCAdapter adapter, WireFormat wireFormat, java.lang.String destinationName)
           
 

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, java.net.URI bindAddress)
          Create a Channel used for the Broker to listen to remove connections
static TransportServerChannel TransportServerChannelProvider.newInstance(WireFormat wireFormat, java.lang.String bindAddress)
          Create a Channel used for the Broker to listen to remove connections
 TransportServerChannel TransportServerChannelFactory.create(WireFormat wireFormat, java.net.URI bindAddress)
          Bind a ServerChannel to an address
static TransportChannel TransportChannelProvider.create(WireFormat wireFormat, java.net.URI remoteLocation)
          Create a Channel to a remote Node - e.g.
static TransportChannel TransportChannelProvider.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.URI localLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel TransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel TransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.URI localLocation)
          Create a Channel to a remote Node - e.g.
 

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, java.net.URI remoteLocation)
           
 TransportChannel CompositeTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.URI localLocation)
           
 

Constructors in org.codehaus.activemq.transport.composite with parameters of type WireFormat
CompositeTransportChannel(WireFormat wireFormat, java.net.URI[] uris)
           
 

Uses of WireFormat in org.codehaus.activemq.transport.ember
 

Methods in org.codehaus.activemq.transport.ember with parameters of type WireFormat
 TransportServerChannel EmberTransportServerChannelFactory.create(WireFormat wireFormat, java.net.URI bindAddress)
          Bind a ServerChannel to an address
 TransportChannel EmberTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel EmberTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.URI localLocation)
          Create a Channel to a remote Node - e.g.
 

Constructors in org.codehaus.activemq.transport.ember with parameters of type WireFormat
EmberTransportServerChannel(WireFormat wireFormat, java.net.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, java.net.URI bindAddress)
          Bind a ServerChannel to an address
 TransportChannel GTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel GTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.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, java.net.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, java.net.URI remoteLocation, java.net.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.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, java.net.URI bindAddress)
           
 TransportChannel JGroupsTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation)
           
 TransportChannel JGroupsTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.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, java.net.URI bindAddress)
          Bind a ServerChannel to an address
 TransportChannel JRMSTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel JRMSTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.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, java.net.URI bindAddr)
           
JRMSTransportChannel(WireFormat wireFormat)
          Construct basic helpers
JRMSTransportChannel(WireFormat wireFormat, java.net.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, java.net.URI bindAddress)
          Bind a ServerChannel to an address
 TransportChannel JxtaTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel JxtaTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.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, java.net.URI bindAddr)
          Default Constructor
JxtaTransportChannel(WireFormat wireFormat, java.net.URI remoteLocation)
          Connect to a remote Node - e.g.
JxtaTransportChannel(WireFormat wireFormat, java.net.URI remoteLocation, java.net.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, java.net.URI bindAddress)
          Bind a ServerChannel to an address
 TransportChannel MulticastTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel MulticastTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.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, java.net.URI bindAddr)
           
MulticastTransportChannel(WireFormat wireFormat, java.net.URI remoteLocation)
          Connect to a remote Node - e.g.
MulticastTransportChannel(WireFormat wireFormat, java.net.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, java.net.URI remoteLocation)
          Create a TransportChannel
 

Constructors in org.codehaus.activemq.transport.reliable with parameters of type WireFormat
ReliableTransportChannel(WireFormat wireFormat, java.net.URI[] uris)
          Constructor for ReliableTransportChannel
 

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, java.net.URI bindAddress)
          Bind a ServerChannel to an address
 TransportChannel TcpTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel TcpTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.URI localLocation)
          Create a Channel to a remote Node - e.g.
 TransportServerChannel SfTransportServerChannelFactory.create(WireFormat wireFormat, java.net.URI bindAddress)
          Bind a ServerChannel to an address
 TransportChannel SfTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel SfTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.URI localLocation)
          Create a Channel to a remote Node - e.g.
 

Constructors in org.codehaus.activemq.transport.tcp with parameters of type WireFormat
TcpTransportServerChannel(WireFormat wireFormat, java.net.URI bindAddr)
          Default Constructor
TcpTransportServerChannel(WireFormat wireFormat, java.net.ServerSocket serverSocket)
           
TcpTransportChannel(WireFormat wireFormat)
          Construct basic helpers
TcpTransportChannel(WireFormat wireFormat, java.net.URI remoteLocation)
          Connect to a remote Node - e.g.
TcpTransportChannel(WireFormat wireFormat, java.net.URI remoteLocation, java.net.URI localLocation)
          Connect to a remote Node - e.g.
TcpTransportChannel(WireFormat wireFormat, java.net.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, java.net.URI bindAddress)
          Bind a ServerChannel to an address
 TransportChannel UdpTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel UdpTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.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, java.net.URI remoteLocation)
           
UdpTransportChannel(WireFormat wireFormat, java.net.URI remoteLocation, int port)
           
UdpTransportChannel(WireFormat wireFormat, java.net.DatagramSocket socket)
           
UdpTransportChannel(WireFormat wireFormat, java.net.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, java.net.URI bindAddress)
          Bind a ServerChannel to an address
 TransportChannel VmTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation)
          Create a Channel to a remote Node - e.g.
 TransportChannel VmTransportChannelFactory.create(WireFormat wireFormat, java.net.URI remoteLocation, java.net.URI localLocation)
          Create a Channel to a remote Node - e.g.
 



Copyright © 2004 Protique, Ltd.. All Rights Reserved.