package
0.0.0-20241019035157-984355d60e10
Repository: https://github.com/taonic/my-samples-go.git
Documentation: pkg.go.dev

# Packages

No description provided by the author
No description provided by the author
No description provided by the author

# README

Concurrent Cancellation

This sample is adapted from https://github.com/temporalio/samples-go/tree/main/cancellation to demonstrate how cancellation can be handle concurrently with blocking Signals and Activities

Make sure the Temporal Server is running locally.

From the root of the project, start a Worker:

go run cancellation/worker/main.go

Start the Workflow Execution:

go run cancellation/starter/main.go

Cancel the Workflow Execution:

go run cancellation/cancel/main.go