This repository was archived by the owner on Apr 15, 2025. It is now read-only.
v4.1.0
Changes
- Improve the exponential back-off.
- Allow the backend URL to be produced by an observable:
rxws.setBackend({
backend: SockJSBackend,
url: () => Observable.create((observer) => {
observer.onNext('someUrl');
})
});