(userId: string)
| 107 | const runtime = yield* Effect.runtime<never>() |
| 108 | |
| 109 | const runRequest = (userId: string): Promise<Result> => |
| 110 | requestStore.run( |
| 111 | { userId }, |
| 112 | () => Runtime.runPromise(runtime)(readAlsOnScheduledContinuation) |
| 113 | ) |
| 114 | |
| 115 | const results = yield* Effect.promise(() => |
| 116 | Promise.all([ |