-
Notifications
You must be signed in to change notification settings - Fork 94
Open
Description
Hello!
Thank you for this great tool, it's really amazing!
However, it would be nice if we could be able to visualize multiple observables on a single screen in parallel.
Having this example:
const { interval } = Rx;
const { map, take, filter } = RxOperators;
const numbers = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
const numbers$ = interval(500).pipe(
take(10),
map(index => numbers[index])
);
const oddNumbers$ = numbers$.pipe(filter(number => number % 2 === 1));
const evenNumbers$ = numbers$.pipe(filter(number => number % 2 === 0));
[numbers$, oddNumbers$, evenNumbers$];
We should be able to visualize all three observables. This would be great to see how different transformations work (like in marble diagrams).
VladimirCreator
Metadata
Metadata
Assignees
Labels
No labels