Class Decision
java.lang.Object
org.elasticsearch.cluster.routing.allocation.decider.Decision
- All Implemented Interfaces:
Writeable,ToXContent
- Direct Known Subclasses:
Decision.Multi,Decision.Single
public abstract class Decision extends java.lang.Object implements ToXContent, Writeable
This abstract class defining basic
Decision used during shard
allocation process.- See Also:
AllocationDecider
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classDecision.MultiSimple class representing a list of decisionsstatic classDecision.SingleSimple class representing a single decisionstatic classDecision.TypeThis enumeration defines the possible types of decisionsNested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.ParamsNested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
-
Constructor Summary
Constructors Constructor Description Decision() -
Method Summary
Modifier and Type Method Description abstract java.util.List<Decision>getDecisions()Return the list of all decisions that make up this decisionabstract java.lang.StringgetExplanation()Get the explanation for this decision.abstract java.lang.Stringlabel()Get the description label for this decision.static DecisionreadFrom(StreamInput in)static Decisionsingle(Decision.Type type, java.lang.String label, java.lang.String explanation, java.lang.Object... explanationParams)Creates a simple decisionabstract Decision.Typetype()Get theDecision.Typeof this decisionMethods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.elasticsearch.common.xcontent.ToXContent
isFragment, toXContent
-
Field Details
-
Constructor Details
-
Decision
public Decision()
-
-
Method Details
-
single
public static Decision single(Decision.Type type, @Nullable java.lang.String label, @Nullable java.lang.String explanation, @Nullable java.lang.Object... explanationParams)Creates a simple decision- Parameters:
type-Decision.Typeof the decisionlabel- label for the Decider that produced this decisionexplanation- explanation of the decisionexplanationParams- additional parameters for the decision- Returns:
- new
Decisioninstance
-
readFrom
- Throws:
java.io.IOException
-
type
Get theDecision.Typeof this decision- Returns:
Decision.Typeof this decision
-
label
Get the description label for this decision. -
getExplanation
Get the explanation for this decision. -
getDecisions
Return the list of all decisions that make up this decision
-