public abstract static class ExecutionsGrpc.ExecutionsImplBase implements BindableServiceExecutions is used to start and manage running instances of Workflows called executions.
Implements
io.grpc.BindableServiceConstructors
ExecutionsImplBase()
public ExecutionsImplBase()Methods
bindService()
public final ServerServiceDefinition bindService()| Type | Description |
io.grpc.ServerServiceDefinition |
cancelExecution(CancelExecutionRequest request, StreamObserver<Execution> responseObserver)
public void cancelExecution(CancelExecutionRequest request, StreamObserver<Execution> responseObserver)Cancels an execution of the given name.
| Name | Description |
request |
CancelExecutionRequest |
responseObserver |
io.grpc.stub.StreamObserver<Execution> |
createExecution(CreateExecutionRequest request, StreamObserver<Execution> responseObserver)
public void createExecution(CreateExecutionRequest request, StreamObserver<Execution> responseObserver)Creates a new execution using the latest revision of the given workflow.
| Name | Description |
request |
CreateExecutionRequest |
responseObserver |
io.grpc.stub.StreamObserver<Execution> |
getExecution(GetExecutionRequest request, StreamObserver<Execution> responseObserver)
public void getExecution(GetExecutionRequest request, StreamObserver<Execution> responseObserver)Returns an execution of the given name.
| Name | Description |
request |
GetExecutionRequest |
responseObserver |
io.grpc.stub.StreamObserver<Execution> |
listExecutions(ListExecutionsRequest request, StreamObserver<ListExecutionsResponse> responseObserver)
public void listExecutions(ListExecutionsRequest request, StreamObserver<ListExecutionsResponse> responseObserver)Returns a list of executions which belong to the workflow with the given name. The method returns executions of all workflow revisions. Returned executions are ordered by their start time (newest first).
| Name | Description |
request |
ListExecutionsRequest |
responseObserver |
io.grpc.stub.StreamObserver<ListExecutionsResponse> |