Skip to content

Instantly share code, notes, and snippets.

@praveen001
Last active July 22, 2019 10:41
Show Gist options
  • Save praveen001/e642b402af3f34d2989e0790f1da260b to your computer and use it in GitHub Desktop.
Save praveen001/e642b402af3f34d2989e0790f1da260b to your computer and use it in GitHub Desktop.
Redux Observable WebSocket
const disconnectEpic = (action$: ActionsObservable<PlaylistAction>) =>
action$.ofType(WebsocketActionTypes.DISCONNECT).map(() => {
onCloseSubject.complete();
webSocketSubject.complete();
return disconnected();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment