Dmitry
Dmitry
Hi guys! I am a power-user of RxJS, i know it very well including all it's weaknesses. I've been watching `Effect` for a long time, and, i assume, it could...
### What version of Effect is running? 3.1.2 ### What steps can reproduce the bug? ```ts import {Effect, TestClock, Console, Schedule} from "effect" const test = Effect.gen(function* () { const...
### What version of Effect is running? 3.1.2 ### What steps can reproduce the bug? ```ts import { Effect, Stream } from 'effect'; const intervalStream = Stream.async(() => {}).pipe(Stream.broadcastDynamic(Infinity)); const...
### What is the problem this feature would solve? We have an extremely useful `Stream.concatAll` and `Stream.mergeAll` functions, but we don't have the same concept for zipping latest values. ###...
### What is the problem this feature would solve? Currently, TestClock requires manual time adjustments, making it cumbersome for testing complex asynchronous scenarios involving multiple parallel processes with varying delays....
### What version of Effect is running? 3.1.5 ### What steps can reproduce the bug? ```ts const intervalStream = Stream.fromSchedule(Schedule.spaced('500 millis')) .pipe(Stream.tap(Console.log)); const program = Effect.gen(function* () { const pubsub...
## Type - [ ] Refactor - [x] Feature - [ ] Bug Fix - [ ] Optimization - [ ] Documentation Update ## Description Implementation of replay last N...
## Type - [x] Refactor - [ ] Feature - [ ] Bug Fix - [ ] Optimization - [ ] Documentation Update ## Description ## Related - Related Issue...
## Type - [ ] Refactor - [x] Feature - [ ] Bug Fix - [ ] Optimization - [ ] Documentation Update ## Description ## Related - Related Issue...
## Type - [ ] Refactor - [x] Feature - [ ] Bug Fix - [ ] Optimization - [ ] Documentation Update ## Description `Stream.share({ connector: PubSub.unbounded() })` returns...