Package org.elasticsearch.tasks
Class TaskId
java.lang.Object
org.elasticsearch.tasks.TaskId
- All Implemented Interfaces:
Writeable
public final class TaskId extends java.lang.Object implements Writeable
Task id that consists of node id and id of the task on the node
-
Nested Class Summary
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V> -
Field Summary
Fields Modifier and Type Field Description static TaskIdEMPTY_TASK_ID -
Constructor Summary
-
Method Summary
Modifier and Type Method Description booleanequals(java.lang.Object o)longgetId()java.lang.StringgetNodeId()inthashCode()booleanisSet()static org.elasticsearch.common.xcontent.ContextParser<java.lang.Void,TaskId>parser()static TaskIdreadFromStream(StreamInput in)Read a TaskId from a stream.java.lang.StringtoString()voidwriteTo(StreamOutput out)Write this into the StreamOutput.
-
Field Details
-
Constructor Details
-
Method Details
-
readFromStream
Read a TaskId from a stream. TaskId has this rather than the usual constructor that takes a StreamInput so we can return theEMPTY_TASK_IDwithout allocating.- Throws:
java.io.IOException
-
writeTo
Description copied from interface:WriteableWrite this into the StreamOutput. -
parser
-
getNodeId
public java.lang.String getNodeId() -
getId
public long getId() -
isSet
public boolean isSet() -
toString
public java.lang.String toString()- Overrides:
toStringin classjava.lang.Object
-
equals
public boolean equals(java.lang.Object o)- Overrides:
equalsin classjava.lang.Object
-
hashCode
public int hashCode()- Overrides:
hashCodein classjava.lang.Object
-