-
I am trying to run an interval stream until some input comes from sdtin, however this code:
```js
var RxNode = require('rx-node');
const Rx = require('rxjs');
Rx.Observable
.interval(100)
…
-
### Summary
RxJS has a buffer() method (http://reactivex.io/rxjs/class/es6/Observable.js~Observable.html#instance-method-buffer) which is often used in examples of how to use streams/observables. A c…
-
Hello,
what I lack when testing rx java things is the ability to quickly produce input observables.
RxJs has super cool functions to produce those
`cold("--a--b--#")`: On frame 20 emit a, on f…
-
**Driver version**: JS driver 4.4.7
RxJS 7 has been released a while back, and projects that use this version have observables that are not quite compatible with the ones from RxJS 6, mostly due to…
-
Signals were added in Angular 16, and seem to be a substantially better way of dealing with state and notification than using RxJS and `Observable` (which tended to confuse students and me).
From m…
-
I've implemented all of the connectable observables from RxJS. Since they're interdependent, it probably makes sense to handle them as one PR, but I can split them up if it's too much to review at on…
-
RxJS 5 supports extending Observables and adding custom operators. I think custom Observables are pretty neat, and they're generally faster than the Observable.create style. Best of all, by overriding…
-
## Bug Report
**Current Behavior**
A clear and concise description of the behavior.
`combineLatest` takes an array of input streams, namely, **zero** or more input streams. But in the case of *…
-
The sdk should expose easily consumable apis for streaming market data for a singel market in realtime.
**Data that should be streamed:**
- Market itself including its status, resolved outcome etc…
-
If I understand correctly, Observables don't use the microtask queue unlike Promises. This makes Observables by default not async. This is weird. Even in the motivation it says
> The Observable typ…