Uses of Interface
org.apache.activemq.command.Endpoint
-
Packages that use Endpoint Package Description org.apache.activemq.command Command objects used via the Command Pattern to communicate among nodesorg.apache.activemq.transport.multicast A Multicast based Transport implementation.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.udp UDP based Transport implementation. -
-
Uses of Endpoint in org.apache.activemq.command
Classes in org.apache.activemq.command that implement Endpoint Modifier and Type Class Description class
BaseEndpoint
A default endpoint.Methods in org.apache.activemq.command that return Endpoint Modifier and Type Method Description Endpoint
BaseCommand. getFrom()
The endpoint within the transport where this message came from.Endpoint
Command. getFrom()
The endpoint within the transport where this message came from which could be null if the transport only supports a single endpoint.Endpoint
KeepAliveInfo. getFrom()
The endpoint within the transport where this message came from.Endpoint
PartialCommand. getFrom()
Endpoint
WireFormatInfo. getFrom()
The endpoint within the transport where this message came from.Endpoint
BaseCommand. getTo()
The endpoint within the transport where this message is going to - null means all endpoints.Endpoint
Command. getTo()
The endpoint within the transport where this message is going to - null means all endpoints.Endpoint
KeepAliveInfo. getTo()
The endpoint within the transport where this message is going to - null means all endpoints.Endpoint
PartialCommand. getTo()
Endpoint
WireFormatInfo. getTo()
The endpoint within the transport where this message is going to - null means all endpoints.Methods in org.apache.activemq.command with parameters of type Endpoint Modifier and Type Method Description void
BaseCommand. setFrom(Endpoint from)
void
Command. setFrom(Endpoint from)
void
KeepAliveInfo. setFrom(Endpoint from)
void
PartialCommand. setFrom(Endpoint from)
void
WireFormatInfo. setFrom(Endpoint from)
void
BaseCommand. setTo(Endpoint to)
void
Command. setTo(Endpoint to)
void
KeepAliveInfo. setTo(Endpoint to)
void
PartialCommand. setTo(Endpoint to)
void
WireFormatInfo. setTo(Endpoint to)
-
Uses of Endpoint in org.apache.activemq.transport.multicast
Methods in org.apache.activemq.transport.multicast that return Endpoint Modifier and Type Method Description Endpoint
MulticastDatagramHeaderMarshaller. createEndpoint(ByteBuffer readBuffer, SocketAddress address)
-
Uses of Endpoint in org.apache.activemq.transport.stomp
Methods in org.apache.activemq.transport.stomp that return Endpoint Modifier and Type Method Description Endpoint
StompFrame. getFrom()
Endpoint
StompFrame. getTo()
Methods in org.apache.activemq.transport.stomp with parameters of type Endpoint Modifier and Type Method Description void
StompFrame. setFrom(Endpoint from)
void
StompFrame. setTo(Endpoint to)
-
Uses of Endpoint in org.apache.activemq.transport.udp
Classes in org.apache.activemq.transport.udp that implement Endpoint Modifier and Type Class Description class
DatagramEndpoint
Methods in org.apache.activemq.transport.udp that return Endpoint Modifier and Type Method Description Endpoint
DatagramHeaderMarshaller. createEndpoint(DatagramPacket datagram, DataInputStream dataIn)
protected Endpoint
DatagramHeaderMarshaller. createEndpoint(SocketAddress address)
Endpoint
DatagramHeaderMarshaller. createEndpoint(ByteBuffer readBuffer, SocketAddress address)
Reads any header if applicable and then creates an endpoint objectprotected Endpoint
DatagramHeaderMarshaller. getEndpoint(SocketAddress address)
Gets the current endpoint object for this address or creates one if not available.Methods in org.apache.activemq.transport.udp with parameters of type Endpoint Modifier and Type Method Description void
UdpTransport. setTargetEndpoint(Endpoint newTarget)
We have received the WireFormatInfo from the server on the actual channel we should use for all future communication with the server, so lets set the target to be the actual channel that the server has chosen for us to talk on.
-