| Package | Description |
|---|---|
| software.amazon.awssdk.services.swf |
|
| software.amazon.awssdk.services.swf.model |
| Modifier and Type | Method and Description |
|---|---|
default CountClosedWorkflowExecutionsResponse |
SWFClient.countClosedWorkflowExecutions(CountClosedWorkflowExecutionsRequest countClosedWorkflowExecutionsRequest)
Returns the number of closed workflow executions within the given domain that meet the specified filtering
criteria.
|
default CountOpenWorkflowExecutionsResponse |
SWFClient.countOpenWorkflowExecutions(CountOpenWorkflowExecutionsRequest countOpenWorkflowExecutionsRequest)
Returns the number of open workflow executions within the given domain that meet the specified filtering
criteria.
|
default CountPendingActivityTasksResponse |
SWFClient.countPendingActivityTasks(CountPendingActivityTasksRequest countPendingActivityTasksRequest)
Returns the estimated number of activity tasks in the specified task list.
|
default CountPendingDecisionTasksResponse |
SWFClient.countPendingDecisionTasks(CountPendingDecisionTasksRequest countPendingDecisionTasksRequest)
Returns the estimated number of decision tasks in the specified task list.
|
default DeprecateActivityTypeResponse |
SWFClient.deprecateActivityType(DeprecateActivityTypeRequest deprecateActivityTypeRequest)
Deprecates the specified activity type.
|
default DeprecateDomainResponse |
SWFClient.deprecateDomain(DeprecateDomainRequest deprecateDomainRequest)
Deprecates the specified domain.
|
default DeprecateWorkflowTypeResponse |
SWFClient.deprecateWorkflowType(DeprecateWorkflowTypeRequest deprecateWorkflowTypeRequest)
Deprecates the specified workflow type.
|
default DescribeActivityTypeResponse |
SWFClient.describeActivityType(DescribeActivityTypeRequest describeActivityTypeRequest)
Returns information about the specified activity type.
|
default DescribeDomainResponse |
SWFClient.describeDomain(DescribeDomainRequest describeDomainRequest)
Returns information about the specified domain, including description and status.
|
default DescribeWorkflowExecutionResponse |
SWFClient.describeWorkflowExecution(DescribeWorkflowExecutionRequest describeWorkflowExecutionRequest)
Returns information about the specified workflow execution including its type and some statistics.
|
default DescribeWorkflowTypeResponse |
SWFClient.describeWorkflowType(DescribeWorkflowTypeRequest describeWorkflowTypeRequest)
Returns information about the specified workflow type.
|
default GetWorkflowExecutionHistoryResponse |
SWFClient.getWorkflowExecutionHistory(GetWorkflowExecutionHistoryRequest getWorkflowExecutionHistoryRequest)
Returns the history of the specified workflow execution.
|
default ListActivityTypesResponse |
SWFClient.listActivityTypes(ListActivityTypesRequest listActivityTypesRequest)
Returns information about all activities registered in the specified domain that match the specified name and
registration status.
|
default ListClosedWorkflowExecutionsResponse |
SWFClient.listClosedWorkflowExecutions(ListClosedWorkflowExecutionsRequest listClosedWorkflowExecutionsRequest)
Returns a list of closed workflow executions in the specified domain that meet the filtering criteria.
|
default ListDomainsResponse |
SWFClient.listDomains(ListDomainsRequest listDomainsRequest)
Returns the list of domains registered in the account.
|
default ListOpenWorkflowExecutionsResponse |
SWFClient.listOpenWorkflowExecutions(ListOpenWorkflowExecutionsRequest listOpenWorkflowExecutionsRequest)
Returns a list of open workflow executions in the specified domain that meet the filtering criteria.
|
default ListWorkflowTypesResponse |
SWFClient.listWorkflowTypes(ListWorkflowTypesRequest listWorkflowTypesRequest)
Returns information about workflow types in the specified domain.
|
default PollForActivityTaskResponse |
SWFClient.pollForActivityTask(PollForActivityTaskRequest pollForActivityTaskRequest)
Used by workers to get an ActivityTask from the specified activity
taskList. |
default PollForDecisionTaskResponse |
SWFClient.pollForDecisionTask(PollForDecisionTaskRequest pollForDecisionTaskRequest)
Used by deciders to get a DecisionTask from the specified decision
taskList. |
default RecordActivityTaskHeartbeatResponse |
SWFClient.recordActivityTaskHeartbeat(RecordActivityTaskHeartbeatRequest recordActivityTaskHeartbeatRequest)
Used by activity workers to report to the service that the ActivityTask represented by the specified
taskToken is still making progress. |
default RegisterActivityTypeResponse |
SWFClient.registerActivityType(RegisterActivityTypeRequest registerActivityTypeRequest)
Registers a new activity type along with its configuration settings in the specified domain.
|
default RegisterDomainResponse |
SWFClient.registerDomain(RegisterDomainRequest registerDomainRequest)
Registers a new domain.
|
default RegisterWorkflowTypeResponse |
SWFClient.registerWorkflowType(RegisterWorkflowTypeRequest registerWorkflowTypeRequest)
Registers a new workflow type and its configuration settings in the specified domain.
|
default RequestCancelWorkflowExecutionResponse |
SWFClient.requestCancelWorkflowExecution(RequestCancelWorkflowExecutionRequest requestCancelWorkflowExecutionRequest)
Records a
WorkflowExecutionCancelRequested event in the currently running workflow execution
identified by the given domain, workflowId, and runId. |
default RespondActivityTaskCanceledResponse |
SWFClient.respondActivityTaskCanceled(RespondActivityTaskCanceledRequest respondActivityTaskCanceledRequest)
Used by workers to tell the service that the ActivityTask identified by the
taskToken was
successfully canceled. |
default RespondActivityTaskCompletedResponse |
SWFClient.respondActivityTaskCompleted(RespondActivityTaskCompletedRequest respondActivityTaskCompletedRequest)
Used by workers to tell the service that the ActivityTask identified by the
taskToken
completed successfully with a result (if provided). |
default RespondActivityTaskFailedResponse |
SWFClient.respondActivityTaskFailed(RespondActivityTaskFailedRequest respondActivityTaskFailedRequest)
Used by workers to tell the service that the ActivityTask identified by the
taskToken has
failed with reason (if specified). |
default RespondDecisionTaskCompletedResponse |
SWFClient.respondDecisionTaskCompleted(RespondDecisionTaskCompletedRequest respondDecisionTaskCompletedRequest)
Used by deciders to tell the service that the DecisionTask identified by the
taskToken has
successfully completed. |
default SignalWorkflowExecutionResponse |
SWFClient.signalWorkflowExecution(SignalWorkflowExecutionRequest signalWorkflowExecutionRequest)
Records a
WorkflowExecutionSignaled event in the workflow execution history and creates a decision
task for the workflow execution identified by the given domain, workflowId and runId. |
default StartWorkflowExecutionResponse |
SWFClient.startWorkflowExecution(StartWorkflowExecutionRequest startWorkflowExecutionRequest)
Starts an execution of the workflow type in the specified domain using the provided
workflowId and
input data. |
default TerminateWorkflowExecutionResponse |
SWFClient.terminateWorkflowExecution(TerminateWorkflowExecutionRequest terminateWorkflowExecutionRequest)
Records a
WorkflowExecutionTerminated event and forces closure of the workflow execution identified
by the given domain, runId, and workflowId. |
| Modifier and Type | Class and Description |
|---|---|
class |
DefaultUndefinedException |
class |
DomainAlreadyExistsException
Returned if the specified domain already exists.
|
class |
DomainDeprecatedException
Returned when the specified domain has been deprecated.
|
class |
LimitExceededException
Returned by any operation if a system imposed limitation has been reached.
|
class |
OperationNotPermittedException
Returned when the caller does not have sufficient permissions to invoke the action.
|
class |
TypeAlreadyExistsException
Returned if the type already exists in the specified domain.
|
class |
TypeDeprecatedException
Returned when the specified activity or workflow type was already deprecated.
|
class |
UnknownResourceException
Returned when the named resource cannot be found with in the scope of this operation (region or domain).
|
class |
WorkflowExecutionAlreadyStartedException
Returned by StartWorkflowExecution when an open execution with the same workflowId is already running in the
specified domain.
|
Copyright © 2017. All rights reserved.