Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width">
  <title>RxJS create Observable</title>
  <script src="https://cdnjs.cloudflare.com/ajax/libs/rxjs/5.0.0-rc.1/Rx.js"></script>
</head>
<body>
<button id="memory">Memory Test</button>
</body>
</html>
 
function makeObservable() {
    let startTime = performance.now();
    let duration = 1000;
    let from = 100;
    let to = 200;
    let distance = Math.abs(to-from);
    let next = (to - from) < 0;
    return Rx.Observable.generate(
        performance.now(),
        x => x <= startTime + duration,
        x => performance.now(),
        x => (x-startTime)/duration,
        Rx.Scheduler.animationFrame
    )
    .map(p => from + (p * (next ? -distance: distance)))
    .concat(Rx.Observable.of(to))
    .distinctUntilChanged()
    .last();
}
function onMemory() {
    for(let i=0; i<1000; i++) {
        console.log("create observable", i, makeObservable());
    }
}
let eventObs = Rx.Observable.fromEvent(document.querySelector("#memory"), "click");
let eventSubscriber = eventObs
    .subscribe( x => {
        setInterval( () => {
          onMemory();
        },1000);
    });
Output

This bin was created anonymously and its free preview time has expired (learn why). — Get a free unrestricted account

Dismiss x
public
Bin info
anonymouspro
0viewers