public class WorkflowExecutionOpenCounts
extends java.lang.Object
implements java.io.Serializable
Contains the counts of open tasks, child workflow executions and timers for a workflow execution.
| コンストラクタと説明 |
|---|
WorkflowExecutionOpenCounts() |
| 修飾子とタイプ | メソッドと説明 |
|---|---|
boolean |
equals(java.lang.Object obj) |
java.lang.Integer |
getOpenActivityTasks()
The count of activity tasks whose status is OPEN.
|
java.lang.Integer |
getOpenChildWorkflowExecutions()
The count of child workflow executions whose status is OPEN.
|
java.lang.Integer |
getOpenDecisionTasks()
The count of decision tasks whose status is OPEN.
|
java.lang.Integer |
getOpenTimers()
The count of timers started by this workflow execution that have not
fired yet.
|
int |
hashCode() |
void |
setOpenActivityTasks(java.lang.Integer openActivityTasks)
The count of activity tasks whose status is OPEN.
|
void |
setOpenChildWorkflowExecutions(java.lang.Integer openChildWorkflowExecutions)
The count of child workflow executions whose status is OPEN.
|
void |
setOpenDecisionTasks(java.lang.Integer openDecisionTasks)
The count of decision tasks whose status is OPEN.
|
void |
setOpenTimers(java.lang.Integer openTimers)
The count of timers started by this workflow execution that have not
fired yet.
|
java.lang.String |
toString()
Returns a string representation of this object; useful for testing and
debugging.
|
WorkflowExecutionOpenCounts |
withOpenActivityTasks(java.lang.Integer openActivityTasks)
The count of activity tasks whose status is OPEN.
|
WorkflowExecutionOpenCounts |
withOpenChildWorkflowExecutions(java.lang.Integer openChildWorkflowExecutions)
The count of child workflow executions whose status is OPEN.
|
WorkflowExecutionOpenCounts |
withOpenDecisionTasks(java.lang.Integer openDecisionTasks)
The count of decision tasks whose status is OPEN.
|
WorkflowExecutionOpenCounts |
withOpenTimers(java.lang.Integer openTimers)
The count of timers started by this workflow execution that have not
fired yet.
|
public java.lang.Integer getOpenActivityTasks()
Constraints:
Range: 0 -
public void setOpenActivityTasks(java.lang.Integer openActivityTasks)
Constraints:
Range: 0 -
openActivityTasks - The count of activity tasks whose status is OPEN.public WorkflowExecutionOpenCounts withOpenActivityTasks(java.lang.Integer openActivityTasks)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 0 -
openActivityTasks - The count of activity tasks whose status is OPEN.public java.lang.Integer getOpenDecisionTasks()
Constraints:
Range: 0 - 1
public void setOpenDecisionTasks(java.lang.Integer openDecisionTasks)
Constraints:
Range: 0 - 1
openDecisionTasks - The count of decision tasks whose status is OPEN. A workflow execution
can have at most one open decision task.public WorkflowExecutionOpenCounts withOpenDecisionTasks(java.lang.Integer openDecisionTasks)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 0 - 1
openDecisionTasks - The count of decision tasks whose status is OPEN. A workflow execution
can have at most one open decision task.public java.lang.Integer getOpenTimers()
Constraints:
Range: 0 -
public void setOpenTimers(java.lang.Integer openTimers)
Constraints:
Range: 0 -
openTimers - The count of timers started by this workflow execution that have not
fired yet.public WorkflowExecutionOpenCounts withOpenTimers(java.lang.Integer openTimers)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 0 -
openTimers - The count of timers started by this workflow execution that have not
fired yet.public java.lang.Integer getOpenChildWorkflowExecutions()
Constraints:
Range: 0 -
public void setOpenChildWorkflowExecutions(java.lang.Integer openChildWorkflowExecutions)
Constraints:
Range: 0 -
openChildWorkflowExecutions - The count of child workflow executions whose status is OPEN.public WorkflowExecutionOpenCounts withOpenChildWorkflowExecutions(java.lang.Integer openChildWorkflowExecutions)
Returns a reference to this object so that method calls can be chained together.
Constraints:
Range: 0 -
openChildWorkflowExecutions - The count of child workflow executions whose status is OPEN.public java.lang.String toString()
toString クラス内 java.lang.ObjectObject.toString()public int hashCode()
hashCode クラス内 java.lang.Objectpublic boolean equals(java.lang.Object obj)
equals クラス内 java.lang.Object