New version 0.13.0!

v0.13.0

Clients

Cancel Running Workflows

The cancellation of a workflow stops its execution and delete its state.

We can cancel running workflows by using a stub that target them by id:

or by tag:

Cancelling a workflow cancels its child workflows as well.

If we do not want this behavior, we should dispatch our child workflow from a task.

The direct cancellation of a child workflow will trigger a CanceledWorkflowException in the parent workflow if waiting for its completion.

The cancel method waits for the adhoc message to be sent to Pulsar. If we prefer to not wait for this message to be sent, we can use the cancelAsync method.

Previous
Complete Running Timers