Skip to content
This repository was archived by the owner on Apr 15, 2025. It is now read-only.

v4.1.0

Choose a tag to compare

@blittle blittle released this 28 Mar 21:18
· 88 commits to master since this release

Changes

  1. Improve the exponential back-off.
  2. Allow the backend URL to be produced by an observable:
rxws.setBackend({
  backend: SockJSBackend,
  url: () => Observable.create((observer) => {
    observer.onNext('someUrl');
  })
});