Check whether a flow exists.
(flowId: string)
| 98 | |
| 99 | /** Check whether a flow exists. */ |
| 100 | has(flowId: string): boolean { |
| 101 | return this.flows.has(flowId); |
| 102 | } |
| 103 | |
| 104 | /** |
| 105 | * Wait for a flow to complete with a caller-facing timeout race. |
no outgoing calls