(value: string)
| 309 | yield* executor.gated.seed(); |
| 310 | |
| 311 | const createWith = (value: string) => |
| 312 | Effect.result( |
| 313 | executor.connections.create({ |
| 314 | owner: "org", |
| 315 | name: ConnectionName.make("main"), |
| 316 | integration: INTEG, |
| 317 | template: TEMPLATE, |
| 318 | value, |
| 319 | }), |
| 320 | ); |
| 321 | |
| 322 | const firstFiber = yield* Effect.forkChild(createWith("first-value")); |
| 323 | yield* Deferred.await(firstWriteEntered); |