(workflowName: string)
| 658 | .annotate(ClusterSchema.Uninterruptible, true) |
| 659 | |
| 660 | const makePartialWorkflowEntity = (workflowName: string) => |
| 661 | Entity.make(`Workflow/${workflowName}`, [ |
| 662 | DeferredRpc, |
| 663 | ResumeRpc, |
| 664 | ActivityRpc |
| 665 | ]) |
| 666 | |
| 667 | const activityPrimaryKey = (activity: string, attempt: number) => `${activity}/${attempt}` |
| 668 |
no test coverage detected