Uses of Class
com.hazelcast.cluster.Address
Package
Description
This package contains the cluster functionality.
Contains public APIs of CP Subsystem
Contains the partition logic for Hazelcast.
Classes for replicated map.
Provides classes for configuring security realms in Hazelcast.
This package contains the public SPI for vendors and users to implement their
custom node / IP discovery strategy.
-
Uses of Address in com.hazelcast.cluster
Modifier and TypeMethodDescriptionstatic Address
Address.createUnresolvedAddress
(String host, int port) Creates an unresolved address.Member.getAddress()
Returns the Address of this Member. -
Uses of Address in com.hazelcast.cp
-
Uses of Address in com.hazelcast.partition
Modifier and TypeMethodDescriptionPartitionLostEvent.getEventSource()
Returns the address of the node that dispatches the event -
Uses of Address in com.hazelcast.replicatedmap
-
Uses of Address in com.hazelcast.security
Modifier and TypeMethodDescriptiondefault Credentials
ICredentialsFactory.newCredentials
(Address address) Creates newCredentials
object for given targetAddress
. -
Uses of Address in com.hazelcast.spi.discovery
Modifier and TypeMethodDescriptionabstract Address
DiscoveryNode.getPrivateAddress()
Returns the private address of the discovered node.SimpleDiscoveryNode.getPrivateAddress()
abstract Address
DiscoveryNode.getPublicAddress()
Returns the public address of the discovered node if available.SimpleDiscoveryNode.getPublicAddress()
Modifier and TypeMethodDescriptionDiscoveryStrategy.getUnhealthyEndpoints()
Fetches a set ofAddress
marked as unhealthy by the underlying implementation.Modifier and TypeMethodDescriptiondefault void
DiscoveryStrategy.markEndpointAsUnhealthy
(Address address) Marks the passedAddress
as unhealthy, which prevents it from being offered as a viable endpoint in someDiscoveryStrategy
implementations, usually prompting this endpoint to be periodically probed for liveliness.ModifierConstructorDescriptionSimpleDiscoveryNode
(Address privateAddress) This constructor will set private and public addresses to the same value and no properties are available.SimpleDiscoveryNode
(Address privateAddress, Address publicAddress) This constructor will set private and public addresses separately and no properties are available.This constructor will set private and public addresses separately.SimpleDiscoveryNode
(Address privateAddress, Map<String, String> properties) This constructor will set private and public addresses to the same value.