Package org.elasticsearch.persistent
Class StartPersistentTaskAction.Request
- java.lang.Object
-
- org.elasticsearch.transport.TransportMessage
-
- org.elasticsearch.transport.TransportRequest
-
- org.elasticsearch.action.ActionRequest
-
- org.elasticsearch.action.support.master.MasterNodeRequest<StartPersistentTaskAction.Request>
-
- org.elasticsearch.persistent.StartPersistentTaskAction.Request
-
- All Implemented Interfaces:
Writeable,TaskAwareRequest
- Enclosing class:
- StartPersistentTaskAction
public static class StartPersistentTaskAction.Request extends MasterNodeRequest<StartPersistentTaskAction.Request>
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class org.elasticsearch.transport.TransportRequest
TransportRequest.Empty
-
Nested classes/interfaces inherited from interface org.elasticsearch.common.io.stream.Writeable
Writeable.Reader<V>, Writeable.Writer<V>
-
-
Field Summary
-
Fields inherited from class org.elasticsearch.action.support.master.MasterNodeRequest
DEFAULT_MASTER_NODE_TIMEOUT, masterNodeTimeout
-
-
Constructor Summary
Constructors Constructor Description Request()Request(String taskId, String taskName, PersistentTaskParams params)Request(StreamInput in)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)PersistentTaskParamsgetParams()StringgetTaskId()StringgetTaskName()inthashCode()voidsetParams(PersistentTaskParams params)voidsetTaskId(String taskId)voidsetTaskName(String taskName)ActionRequestValidationExceptionvalidate()voidwriteTo(StreamOutput out)Write this into the StreamOutput.-
Methods inherited from class org.elasticsearch.action.support.master.MasterNodeRequest
masterNodeTimeout, masterNodeTimeout, masterNodeTimeout
-
Methods inherited from class org.elasticsearch.action.ActionRequest
getShouldStoreResult
-
Methods inherited from class org.elasticsearch.transport.TransportRequest
getParentTask, setParentTask
-
Methods inherited from class org.elasticsearch.transport.TransportMessage
remoteAddress, remoteAddress
-
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface org.elasticsearch.tasks.TaskAwareRequest
createTask, getDescription, setParentTask
-
-
-
-
Constructor Detail
-
Request
public Request()
-
Request
public Request(StreamInput in) throws IOException
- Throws:
IOException
-
Request
public Request(String taskId, String taskName, PersistentTaskParams params)
-
-
Method Detail
-
writeTo
public void writeTo(StreamOutput out) throws IOException
Description copied from interface:WriteableWrite this into the StreamOutput.- Specified by:
writeToin interfaceWriteable- Overrides:
writeToin classMasterNodeRequest<StartPersistentTaskAction.Request>- Throws:
IOException
-
validate
public ActionRequestValidationException validate()
- Specified by:
validatein classActionRequest
-
getTaskName
public String getTaskName()
-
setTaskName
public void setTaskName(String taskName)
-
getTaskId
public String getTaskId()
-
setTaskId
public void setTaskId(String taskId)
-
getParams
public PersistentTaskParams getParams()
-
setParams
@Nullable public void setParams(PersistentTaskParams params)
-
-