(value: string)
| 343 | yield* executor.gated.seed(); |
| 344 | |
| 345 | const createWith = (value: string) => |
| 346 | Effect.result( |
| 347 | executor.connections.create({ |
| 348 | owner: "org", |
| 349 | name: ConnectionName.make("main"), |
| 350 | integration: INTEG, |
| 351 | template: TEMPLATE, |
| 352 | value, |
| 353 | }), |
| 354 | ); |
| 355 | |
| 356 | const firstFiber = yield* Effect.forkChild(createWith("first-value")); |
| 357 | yield* Deferred.await(firstWriteEntered); |