Package org.apache.solr.cluster
Interface Replica
-
public interface Replica
An instantiation (or one of the copies) of a givenShard
of a givenSolrCollection
.
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface Description static class
Replica.ReplicaState
static class
Replica.ReplicaType
The order of this enum is important from the most to least "important" replica type.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getCoreName()
The core name on diskNode
getNode()
String
getReplicaName()
Shard
getShard()
Replica.ReplicaState
getState()
Replica.ReplicaType
getType()
-
-
-
Method Detail
-
getShard
Shard getShard()
-
getType
Replica.ReplicaType getType()
-
getState
Replica.ReplicaState getState()
-
getReplicaName
String getReplicaName()
-
getCoreName
String getCoreName()
The core name on disk
-
getNode
Node getNode()
-
-