Created
July 22, 2019 10:39
-
-
Save praveen001/79c8e210d5508dfc7a8d4741436afd75 to your computer and use it in GitHub Desktop.
Redux Observable WebSocket
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const sendMessageEpic = action$ => | |
action$.ofType(WebsocketActionTypes.SEND_MESSAGE).map(action => { | |
webSocketSubject.next(action.payload); | |
return sentMessage(); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment