Class SetPriorityAction
- java.lang.Object
-
- org.elasticsearch.client.indexlifecycle.SetPriorityAction
-
- All Implemented Interfaces:
LifecycleAction
,ToXContent
,ToXContentObject
public class SetPriorityAction extends java.lang.Object implements LifecycleAction, ToXContentObject
ALifecycleAction
which sets the index's priority. The higher the priority, the faster the recovery.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.xcontent.ToXContent
ToXContent.DelegatingMapParams, ToXContent.MapParams, ToXContent.Params
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.String
NAME
-
Fields inherited from interface org.elasticsearch.common.xcontent.ToXContent
EMPTY_PARAMS
-
-
Constructor Summary
Constructors Constructor Description SetPriorityAction(java.lang.Integer recoveryPriority)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(java.lang.Object o)
java.lang.String
getName()
int
hashCode()
static SetPriorityAction
parse(XContentParser parser)
java.lang.String
toString()
XContentBuilder
toXContent(XContentBuilder builder, ToXContent.Params params)
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.common.xcontent.ToXContentObject
isFragment
-
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
SetPriorityAction
public SetPriorityAction(@Nullable java.lang.Integer recoveryPriority)
-
-
Method Detail
-
parse
public static SetPriorityAction parse(XContentParser parser)
-
toXContent
public XContentBuilder toXContent(XContentBuilder builder, ToXContent.Params params) throws java.io.IOException
- Specified by:
toXContent
in interfaceToXContent
- Throws:
java.io.IOException
-
equals
public boolean equals(java.lang.Object o)
- Overrides:
equals
in classjava.lang.Object
-
hashCode
public int hashCode()
- Overrides:
hashCode
in classjava.lang.Object
-
toString
public java.lang.String toString()
- Overrides:
toString
in classjava.lang.Object
-
getName
public java.lang.String getName()
- Specified by:
getName
in interfaceLifecycleAction
- Returns:
- the name of this action
-
-