Tim
Tim
It is because the fiber hasn't started when it hits `Effect.awaitAllChildren`, if we ensure the fiber has started first it will work: https://effect.website/play#83b4743a0952 Alternatively you can use .forkScoped to ensure...
There is a module in /platform-node for working with node streams https://effect-ts.github.io/effect/platform-node-shared/NodeStream.ts.html
/rebase
/rebase
The removal of exported types is a breaking change, so the changeset should be "major".
I think if we were going to add a replay option, we would need to add it to every strategy. Also switch to object arguments: ```ts Pubsub.unbounded({ replaySize: 16 })...
> `PubSub.bounded({capacity: 2, replay: 3})` looks contradictory to me capacity and replay could be separate buffers, so you could have a higher replay buffer compared to the capacity. Or the...
Logger.batched? https://effect-ts.github.io/effect/effect/Logger.ts.html#batched
What is the benefit over `flatMap(f, { switch: true })`?
> @tim-smart what should we do? I am kind of in favour of accepting this given the semantic specificity I think we can add it back as `flatMapSwitch` (what it...