(event: Event)
| 825 | }) |
| 826 | |
| 827 | const touch = (event: Event) => { |
| 828 | const next = state.wait |
| 829 | if (!next || !active(event, input.sessionID)) { |
| 830 | return |
| 831 | } |
| 832 | |
| 833 | next.live = true |
| 834 | } |
| 835 | |
| 836 | const complete = Effect.fn("RunStreamTransport.complete")(function* (next: Wait, fallback: boolean) { |
| 837 | if (state.wait !== next || !next.armed || !next.live) { |