-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathmain.go
More file actions
39 lines (32 loc) · 1.03 KB
/
main.go
File metadata and controls
39 lines (32 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
package main
import (
"context"
"flag"
requestcancelexternalworkflow "github.com/temporalio/samples-go/request-cancel-external-workflow"
"log"
"go.temporal.io/sdk/client"
)
// @@@SNIPSTART samples-go-cancellation-workflow-execution-starter
func main() {
var workflowID string
flag.StringVar(&workflowID, "w", "workflowID-to-cancel", "w is the workflowID of the workflow to be canceled.")
flag.Parse()
// The client is a heavyweight object that should be created once per process.
c, err := client.Dial(client.Options{
HostPort: client.DefaultHostPort,
})
if err != nil {
log.Fatalln("Unable to create client", err)
}
defer c.Close()
workflowOptions := client.StartWorkflowOptions{
ID: workflowID,
TaskQueue: "cancel-activity",
}
we, err := c.ExecuteWorkflow(context.Background(), workflowOptions, requestcancelexternalworkflow.CancellingWorkflow)
if err != nil {
log.Fatalln("Unable to execute workflow", err)
}
log.Println("Started workflow", "WorkflowID", we.GetID(), "RunID", we.GetRunID())
}
// @@@SNIPEND