685
return sdkClient.CancelWorkflow(ctx, executionInfo.Execution.WorkflowId, executionInfo.Execution.RunId)
686
})
687
>
case *workflowservice.StartBatchOperationRequest_SignalOperation:
activities.go
688
>
err = processTask(ctx, limiter, task,
689
>
func(executionInfo *workflowpb.WorkflowExecutionInfo) error {
690
>
_, err := frontendClient.SignalWorkflowExecution(ctx, &workflowservice.SignalWorkflowExecutionRequest{
691
>
Namespace: namespace,
692
>
WorkflowExecution: executionInfo.Execution,
693
>
SignalName: operation.SignalOperation.GetSignal(),
694
>
Input: operation.SignalOperation.GetInput(),
695
>
Identity: operation.SignalOperation.GetIdentity(),
696
>
RequestId: deterministicRequestID(batchOperation.Request.GetJobId(), "signal",
697
>
executionInfo.Execution.GetWorkflowId(), executionInfo.Execution.GetRunId(), operation.SignalOperation.GetSignal()),
698
>
})
699
>
return err
700
>
})
701
case *workflowservice.StartBatchOperationRequest_DeletionOperation:
702
err = processTask(ctx, limiter, task,