public class InternalPartitionImpl extends Object implements InternalPartition
MAX_REPLICA_COUNT
MAX_BACKUP_COUNT
Constructor and Description |
---|
InternalPartitionImpl(int partitionId,
PartitionListener listener,
Address thisAddress,
Address[] addresses) |
Modifier and Type | Method and Description |
---|---|
Address |
getOwnerOrNull()
Returns the address of the owner of this partition.
|
int |
getPartitionId()
Returns the partition ID.
|
Address |
getReplicaAddress(int replicaIndex)
Returns the address of the replica.
|
int |
getReplicaIndex(Address address)
Return the replica index for this partition.
|
static int |
getReplicaIndex(Address[] addresses,
Address address)
Returns the index of the
address in addresses or -1 if the address is null or
not present. |
boolean |
isLocal()
Checks if the partition is local.
|
boolean |
isMigrating()
Checks if there currently is a migration going on in this partition.
|
boolean |
isOwnerOrBackup(Address address)
Checks if given address is owner of primary or backup of this partition.
|
void |
setMigrating(boolean isMigrating) |
String |
toString() |
public InternalPartitionImpl(int partitionId, PartitionListener listener, Address thisAddress, Address[] addresses)
public int getPartitionId()
IPartition
The partition ID will be between 0 and partitionCount (exclusive).
getPartitionId
in interface IPartition
public boolean isMigrating()
IPartition
The returned value could be stale when it is returned.
isMigrating
in interface IPartition
true
if there is a migration going on, false
otherwisepublic void setMigrating(boolean isMigrating)
public boolean isLocal()
IPartition
IPartition.getOwnerOrNull()
returns the same address as 'this' address of the
ClusterService.getThisAddress()
. If the address is null
or a different address, false
is returned.isLocal
in interface IPartition
true
if local, false
otherwisepublic Address getOwnerOrNull()
IPartition
If no owner has been set yet, null is returned. So be careful with assuming that a non null
value is returned.
The value could be stale when returned.
getOwnerOrNull
in interface IPartition
public Address getReplicaAddress(int replicaIndex)
IPartition
The owner has replica index 0.
The returned value could be null
if the owner/replica has not yet been set.
The returned value could be stale when it is returned.
getReplicaAddress
in interface IPartition
replicaIndex
- the index of the replicapublic boolean isOwnerOrBackup(Address address)
IPartition
isOwnerOrBackup
in interface IPartition
address
- owner addresstrue
if address is owner or backup, false
otherwisepublic int getReplicaIndex(Address address)
InternalPartition
getReplicaIndex
in interface InternalPartition
address
- the replica addresspublic static int getReplicaIndex(Address[] addresses, Address address)
address
in addresses
or -1 if the address
is null
or
not present.Copyright © 2017 Hazelcast, Inc.. All Rights Reserved.