Uses of Interface
org.codehaus.activemq.io.WireFormat

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.io   
org.codehaus.activemq.io.impl   
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.multicast An implementation of the transport layer using multicast  
org.codehaus.activemq.transport.peer   
org.codehaus.activemq.transport.reliable   
org.codehaus.activemq.transport.remote   
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
 

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

Classes in org.codehaus.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.codehaus.activemq.transport.xstream.XStreamWireFormat or the org.codehaus.activemq.transport.jabber.JabberWireFormat
 

Methods in org.codehaus.activemq.io that return WireFormat
 WireFormat WireFormatLoader.getWireFormat(int type)
          Create a wire format
 WireFormat WireFormatLoader.getPreferedWireFormat()
           
 WireFormat WireFormat.copy()
          Creates a new copy of this wire format so it can be used in another thread/context
 

Methods in org.codehaus.activemq.io with parameters of type WireFormat
 void WireFormatLoader.setPreferedWireFormat(WireFormat preferedWireFormat)
           
 

Constructors in org.codehaus.activemq.io with parameters of type WireFormat
WireFormatLoader(WireFormat prefered)
          Construct WireFormatLoader with the prefered WireFormat
 

Uses of WireFormat in org.codehaus.activemq.io.impl
 

Classes in org.codehaus.activemq.io.impl that implement WireFormat
 class DefaultWireFormat
          Default implementation used for Java-Java protocols.
 

Methods in org.codehaus.activemq.io.impl that return WireFormat
 WireFormat DefaultWireFormat.copy()
           
 

Uses of WireFormat in org.codehaus.activemq.transport
 

Methods in org.codehaus.activemq.transport with parameters of type WireFormat
 TransportChannel DiscoveryTransportChannelFactorySupport.create(WireFormat wireFormat, URI remoteLocation)
           
 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.
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.
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
 TransportServerChannel TransportServerChannelFactory.create(WireFormat wireFormat, URI bindAddress)
          Bind a ServerChannel to an address
 

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

Methods in org.codehaus.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.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.peer
 

Fields in org.codehaus.activemq.transport.peer declared as WireFormat
protected  WireFormat PeerTransportChannel.wireFormat
           
 

Methods in org.codehaus.activemq.transport.peer that return WireFormat
 WireFormat PeerTransportChannel.getWireFormat()
           
 

Methods in org.codehaus.activemq.transport.peer with parameters of type WireFormat
 TransportChannel PeerTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation)
          Create a Channel
 TransportChannel PeerTransportChannelFactory.create(WireFormat wireFormat, URI remoteLocation, URI localLocation)
          Create a peer channel
 void PeerTransportChannel.setWireFormat(WireFormat wireFormat)
           
 

Constructors in org.codehaus.activemq.transport.peer with parameters of type WireFormat
PeerTransportChannel(WireFormat wireFormat, String serviceName)
          Construct a PeerTransportChannel
 

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

Methods in org.codehaus.activemq.transport.remote with parameters of type 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.codehaus.activemq.transport.remote with parameters of type WireFormat
RemoteTransportChannel(WireFormat wireFormat, String peerURIs)
          Construct a RemoteTransportChannel
 

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

Methods in org.codehaus.activemq.transport.tcp that return WireFormat
 WireFormat TcpTransportServerChannel.getWireFormat()
           
 

Methods in org.codehaus.activemq.transport.tcp with parameters of type WireFormat
 void TcpTransportServerChannel.setWireFormat(WireFormat 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.
 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.
 

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.
 



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