public class DecisionTask extends Object implements Serializable, Cloneable
A structure that represents a decision task. Decision tasks are sent to deciders in order for them to make decisions.
| Constructor and Description | 
|---|
| DecisionTask() | 
| Modifier and Type | Method and Description | 
|---|---|
| DecisionTask | clone() | 
| boolean | equals(Object obj) | 
| List<HistoryEvent> | getEvents()
 A paginated list of history events of the workflow execution. | 
| String | getNextPageToken()
 If a  NextPageTokenwas returned by a previous call, there
 are more results available. | 
| Long | getPreviousStartedEventId()
 The ID of the DecisionTaskStarted event of the previous decision task of
 this workflow execution that was processed by the decider. | 
| Long | getStartedEventId()
 The ID of the  DecisionTaskStartedevent recorded in the
 history. | 
| String | getTaskToken()
 The opaque string used as a handle on the task. | 
| WorkflowExecution | getWorkflowExecution()
 The workflow execution for which this decision task was created. | 
| WorkflowType | getWorkflowType()
 The type of the workflow execution for which this decision task was
 created. | 
| int | hashCode() | 
| void | setEvents(Collection<HistoryEvent> events)
 A paginated list of history events of the workflow execution. | 
| void | setNextPageToken(String nextPageToken)
 If a  NextPageTokenwas returned by a previous call, there
 are more results available. | 
| void | setPreviousStartedEventId(Long previousStartedEventId)
 The ID of the DecisionTaskStarted event of the previous decision task of
 this workflow execution that was processed by the decider. | 
| void | setStartedEventId(Long startedEventId)
 The ID of the  DecisionTaskStartedevent recorded in the
 history. | 
| void | setTaskToken(String taskToken)
 The opaque string used as a handle on the task. | 
| void | setWorkflowExecution(WorkflowExecution workflowExecution)
 The workflow execution for which this decision task was created. | 
| void | setWorkflowType(WorkflowType workflowType)
 The type of the workflow execution for which this decision task was
 created. | 
| String | toString()Returns a string representation of this object; useful for testing and
 debugging. | 
| DecisionTask | withEvents(Collection<HistoryEvent> events)
 A paginated list of history events of the workflow execution. | 
| DecisionTask | withEvents(HistoryEvent... events)
 A paginated list of history events of the workflow execution. | 
| DecisionTask | withNextPageToken(String nextPageToken)
 If a  NextPageTokenwas returned by a previous call, there
 are more results available. | 
| DecisionTask | withPreviousStartedEventId(Long previousStartedEventId)
 The ID of the DecisionTaskStarted event of the previous decision task of
 this workflow execution that was processed by the decider. | 
| DecisionTask | withStartedEventId(Long startedEventId)
 The ID of the  DecisionTaskStartedevent recorded in the
 history. | 
| DecisionTask | withTaskToken(String taskToken)
 The opaque string used as a handle on the task. | 
| DecisionTask | withWorkflowExecution(WorkflowExecution workflowExecution)
 The workflow execution for which this decision task was created. | 
| DecisionTask | withWorkflowType(WorkflowType workflowType)
 The type of the workflow execution for which this decision task was
 created. | 
public void setTaskToken(String taskToken)
The opaque string used as a handle on the task. This token is used by workers to communicate progress and response information back to the system about the task.
taskToken - The opaque string used as a handle on the task. This token is used
        by workers to communicate progress and response information back
        to the system about the task.public String getTaskToken()
The opaque string used as a handle on the task. This token is used by workers to communicate progress and response information back to the system about the task.
public DecisionTask withTaskToken(String taskToken)
The opaque string used as a handle on the task. This token is used by workers to communicate progress and response information back to the system about the task.
taskToken - The opaque string used as a handle on the task. This token is used
        by workers to communicate progress and response information back
        to the system about the task.public void setStartedEventId(Long startedEventId)
 The ID of the DecisionTaskStarted event recorded in the
 history.
 
startedEventId - The ID of the DecisionTaskStarted event recorded in
        the history.public Long getStartedEventId()
 The ID of the DecisionTaskStarted event recorded in the
 history.
 
DecisionTaskStarted event recorded in
         the history.public DecisionTask withStartedEventId(Long startedEventId)
 The ID of the DecisionTaskStarted event recorded in the
 history.
 
startedEventId - The ID of the DecisionTaskStarted event recorded in
        the history.public void setWorkflowExecution(WorkflowExecution workflowExecution)
The workflow execution for which this decision task was created.
workflowExecution - The workflow execution for which this decision task was created.public WorkflowExecution getWorkflowExecution()
The workflow execution for which this decision task was created.
public DecisionTask withWorkflowExecution(WorkflowExecution workflowExecution)
The workflow execution for which this decision task was created.
workflowExecution - The workflow execution for which this decision task was created.public void setWorkflowType(WorkflowType workflowType)
The type of the workflow execution for which this decision task was created.
workflowType - The type of the workflow execution for which this decision task
        was created.public WorkflowType getWorkflowType()
The type of the workflow execution for which this decision task was created.
public DecisionTask withWorkflowType(WorkflowType workflowType)
The type of the workflow execution for which this decision task was created.
workflowType - The type of the workflow execution for which this decision task
        was created.public List<HistoryEvent> getEvents()
A paginated list of history events of the workflow execution. The decider uses this during the processing of the decision task.
public void setEvents(Collection<HistoryEvent> events)
A paginated list of history events of the workflow execution. The decider uses this during the processing of the decision task.
events - A paginated list of history events of the workflow execution. The
        decider uses this during the processing of the decision task.public DecisionTask withEvents(HistoryEvent... events)
A paginated list of history events of the workflow execution. The decider uses this during the processing of the decision task.
 NOTE: This method appends the values to the existing list (if
 any). Use setEvents(java.util.Collection) or
 withEvents(java.util.Collection) if you want to override the
 existing values.
 
events - A paginated list of history events of the workflow execution. The
        decider uses this during the processing of the decision task.public DecisionTask withEvents(Collection<HistoryEvent> events)
A paginated list of history events of the workflow execution. The decider uses this during the processing of the decision task.
events - A paginated list of history events of the workflow execution. The
        decider uses this during the processing of the decision task.public void setNextPageToken(String nextPageToken)
 If a NextPageToken was returned by a previous call, there
 are more results available. To retrieve the next page of results, make
 the call again using the returned token in nextPageToken.
 Keep all other arguments unchanged.
 
 The configured maximumPageSize determines how many results
 can be returned in a single call.
 
nextPageToken - If a NextPageToken was returned by a previous call,
        there are more results available. To retrieve the next page of
        results, make the call again using the returned token in
        nextPageToken. Keep all other arguments
        unchanged.
        
        The configured maximumPageSize determines how many
        results can be returned in a single call.
public String getNextPageToken()
 If a NextPageToken was returned by a previous call, there
 are more results available. To retrieve the next page of results, make
 the call again using the returned token in nextPageToken.
 Keep all other arguments unchanged.
 
 The configured maximumPageSize determines how many results
 can be returned in a single call.
 
NextPageToken was returned by a previous call,
         there are more results available. To retrieve the next page of
         results, make the call again using the returned token in
         nextPageToken. Keep all other arguments
         unchanged.
         
         The configured maximumPageSize determines how many
         results can be returned in a single call.
public DecisionTask withNextPageToken(String nextPageToken)
 If a NextPageToken was returned by a previous call, there
 are more results available. To retrieve the next page of results, make
 the call again using the returned token in nextPageToken.
 Keep all other arguments unchanged.
 
 The configured maximumPageSize determines how many results
 can be returned in a single call.
 
nextPageToken - If a NextPageToken was returned by a previous call,
        there are more results available. To retrieve the next page of
        results, make the call again using the returned token in
        nextPageToken. Keep all other arguments
        unchanged.
        
        The configured maximumPageSize determines how many
        results can be returned in a single call.
public void setPreviousStartedEventId(Long previousStartedEventId)
The ID of the DecisionTaskStarted event of the previous decision task of this workflow execution that was processed by the decider. This can be used to determine the events in the history new since the last decision task received by the decider.
previousStartedEventId - The ID of the DecisionTaskStarted event of the previous decision
        task of this workflow execution that was processed by the decider.
        This can be used to determine the events in the history new since
        the last decision task received by the decider.public Long getPreviousStartedEventId()
The ID of the DecisionTaskStarted event of the previous decision task of this workflow execution that was processed by the decider. This can be used to determine the events in the history new since the last decision task received by the decider.
public DecisionTask withPreviousStartedEventId(Long previousStartedEventId)
The ID of the DecisionTaskStarted event of the previous decision task of this workflow execution that was processed by the decider. This can be used to determine the events in the history new since the last decision task received by the decider.
previousStartedEventId - The ID of the DecisionTaskStarted event of the previous decision
        task of this workflow execution that was processed by the decider.
        This can be used to determine the events in the history new since
        the last decision task received by the decider.public String toString()
toString in class ObjectObject.toString()public DecisionTask clone()
Copyright © 2013 Amazon Web Services, Inc. All Rights Reserved.