| org.jgroups.Address
All known Subclasses: org.jgroups.stack.IpAddress, org.jgroups.protocols.WanPipeAddress, org.jgroups.stack.LogicalAddress,
Address | public interface Address extends Externalizable,Streamable,Comparable,Cloneable(Code) | | Abstract address. Used to identify members on a group to send messages to.
Addresses are mostly generated by the bottom-most (transport) layers (e.g. UDP, TCP, LOOPBACK).
author: Bela Ban |
Method Summary | |
boolean | isMulticastAddress() Checks whether this is an address that represents multiple destinations;
e.g., a class D address in the Internet. | int | size() |
isMulticastAddress | boolean isMulticastAddress()(Code) | | Checks whether this is an address that represents multiple destinations;
e.g., a class D address in the Internet.
true if this is a multicast address, false if it is a unicast address |
size | int size()(Code) | | Returns serialized size of this address
|
|
|