Uses of Class
org.jgroups.stack.IpAddress
-
Packages that use IpAddress Package Description org.jgroups.auth org.jgroups.blocks.cs This package contains all client-server related interfaces and classesorg.jgroups.protocols Provides implementations of transport protocols which are responsible for sending and receiving messages to/from the network.org.jgroups.protocols.pbcast org.jgroups.stack Support for managing protocol stacks. -
-
Uses of IpAddress in org.jgroups.auth
Methods in org.jgroups.auth with parameters of type IpAddress Modifier and Type Method Description boolean
FixedMembershipToken. isInMembersList(IpAddress sender)
static boolean
FixedMembershipToken. match(IpAddress sender, java.net.InetSocketAddress addr)
-
Uses of IpAddress in org.jgroups.blocks.cs
Methods in org.jgroups.blocks.cs with parameters of type IpAddress Modifier and Type Method Description NioClient
NioClient. remoteAddress(IpAddress addr)
Sets the address of the server.TcpClient
TcpClient. remoteAddress(IpAddress addr)
Sets the address of the server.Constructors in org.jgroups.blocks.cs with parameters of type IpAddress Constructor Description NioClient(IpAddress bind_addr, IpAddress server_addr)
Creates an instance of anNioClient
that acts as a client: no server channel is created and no acceptor is started to listen for incoming connections.NioServer(IpAddress bind_addr)
Creates an instance of NioServer.TcpClient(IpAddress bind_addr, IpAddress server_addr)
Creates an instance of anTcpClient
that acts as a client: no server socket is created and no acceptor is started to listen for incoming connections.TcpServer(IpAddress bind_addr)
Creates an instance of TcpServer. -
Uses of IpAddress in org.jgroups.protocols
Fields in org.jgroups.protocols declared as IpAddress Modifier and Type Field Description protected IpAddress
UDP. mcast_addr
The multicast address (mcast address and port) this member usesprotected IpAddress
SimpleTCP.Connection. peer_addr
protected IpAddress
FD_SOCK.FdHeader. sock_addr
protected IpAddress
FD_SOCK. srv_sock_addr
Fields in org.jgroups.protocols with type parameters of type IpAddress Modifier and Type Field Description protected LazyRemovalCache<Address,IpAddress>
FD_SOCK. cache
Cache of member addresses and their ServerSocket addressesprotected Promise<java.util.Map<Address,IpAddress>>
FD_SOCK. get_cache_promise
Used to rendezvous on GET_CACHE and GET_CACHE_RSPprotected Promise<IpAddress>
FD_SOCK. ping_addr_promise
Methods in org.jgroups.protocols that return IpAddress Modifier and Type Method Description protected IpAddress
UDP. createLocalAddress()
protected IpAddress
FD_SOCK. fetchPingAddress(Address mbr)
Attempts to obtain the ping_addr first from the cache, then by unicasting q request tombr
, then by multicasting a request to all members.Methods in org.jgroups.protocols that return types with arguments of type IpAddress Modifier and Type Method Description protected java.util.Map<Address,IpAddress>
FD_SOCK. unmarshal(byte[] buffer, int offset, int length)
Methods in org.jgroups.protocols with parameters of type IpAddress Modifier and Type Method Description protected javax.net.ssl.SSLSocket
SSL_KEY_EXCHANGE. createSocketTo(IpAddress dest, javax.net.ssl.SSLSocketFactory sslSocketFactory)
protected void
FD_SOCK. sendIHaveSockMessage(Address dst, Address mbr, IpAddress addr)
Sends or broadcasts a I_HAVE_SOCK response.protected boolean
FD_SOCK. setupPingSocket(IpAddress dest)
Creates a socket todest
, and assigns it to ping_sock.FD_SOCK.FdHeader
FD_SOCK.FdHeader. sockAddress(IpAddress a)
Method parameters in org.jgroups.protocols with type arguments of type IpAddress Modifier and Type Method Description static Buffer
FD_SOCK. marshal(LazyRemovalCache<Address,IpAddress> addrs)
Constructors in org.jgroups.protocols with parameters of type IpAddress Constructor Description FdHeader(byte type, Address mbr, IpAddress sock_addr)
-
Uses of IpAddress in org.jgroups.protocols.pbcast
Fields in org.jgroups.protocols.pbcast declared as IpAddress Modifier and Type Field Description protected IpAddress
STATE_SOCK.StateProviderAcceptor. address
protected IpAddress
StreamingStateTransfer.StateHeader. bind_addr
Methods in org.jgroups.protocols.pbcast that return IpAddress Modifier and Type Method Description IpAddress
STATE_SOCK.StateProviderAcceptor. getServerSocketAddress()
Constructors in org.jgroups.protocols.pbcast with parameters of type IpAddress Constructor Description StateHeader(byte type, IpAddress bind_addr, Digest digest)
-
Uses of IpAddress in org.jgroups.stack
Subclasses of IpAddress in org.jgroups.stack Modifier and Type Class Description class
IpAddressUUID
IpAddress with a 'semi'-UUID to prevent reincarnation when the port is fixed.Fields in org.jgroups.stack declared as IpAddress Modifier and Type Field Description protected IpAddress
RouterStubManager.Target. bind_addr
protected IpAddress
RouterStub. local
protected IpAddress
RouterStub. remote
protected IpAddress
RouterStubManager.Target. router_addr
Methods in org.jgroups.stack that return IpAddress Modifier and Type Method Description IpAddress
IpAddress. copy()
IpAddress
IpAddressUUID. copy()
IpAddress
RouterStub. gossipRouterAddress()
IpAddress
RouterStub. local()
IpAddress
RouterStub. remote()
Methods in org.jgroups.stack that return types with arguments of type IpAddress Modifier and Type Method Description java.util.function.Supplier<? extends IpAddress>
IpAddress. create()
java.util.function.Supplier<? extends IpAddress>
IpAddressUUID. create()
Methods in org.jgroups.stack with parameters of type IpAddress Modifier and Type Method Description RouterStub
RouterStubManager. createAndRegisterStub(IpAddress local, IpAddress router_addr)
protected RouterStub
RouterStubManager. find(IpAddress router_addr)
RouterStub
RouterStubManager. unregisterStub(IpAddress router_addr)
Constructors in org.jgroups.stack with parameters of type IpAddress Constructor Description RouterStub(IpAddress local, IpAddress remote, boolean use_nio, RouterStub.CloseListener l, SocketFactory socketFactory)
Target(IpAddress bind_addr, IpAddress router_addr, RouterStub.StubReceiver receiver)
-