If I do the following call:
workflowClient
.newUntypedWorkflowStub(workflowId)
.cancel()
Is there a way to handle the cancellation for that type of workflow? (some kind of onCancel() or handleCancellation() ) or what is the suggested approach if I need to do some cleanup steps after cancelation?