Websocket convention is more intuitive from the point of the Receiver
See original GitHub issueCurrently websockets on 0.18 are
read
-> Sends messages to the RealWorld™
write
-> Receives messages from RealWorld™
This is pretty backwards. Most people writing websocket services think of it from the point of the server.
@ChristopherDavenport Had a good convention for this:
read
-> serverWrite
or maybe serverEmit
write
-> serverRead
This is a simple rename, but should also be accompanied by it being noted in the scaladoc.
Issue Analytics
- State:
- Created 6 years ago
- Comments:9 (9 by maintainers)
Top Results From Across the Web
WebSockets - A Conceptual Deep Dive
The WebSocket protocol created new possibilities for communication over the Internet and opened the door to a truly realtime web.
Read more >What is WebSocket and How It Works? ⚙️
WebSocket are an essential client-server communication tool and one needs to be fully aware of its utility and avoid scenarios to benefit from...
Read more >Video Streaming Over Full Duplex Network Using ...
Abstract—This paper, describes the use of websocket for video streaming, which enables a two-way communication between clients in a.
Read more >Writing WebSocket servers - Web APIs | MDN
A WebSocket server is nothing more than an application listening on any port of a TCP server that follows a specific protocol.
Read more >A JSON event-based convention for WebSockets
Be amazed by the wonderful world of WebSockets by creating your own JavaScript-based chat client.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Alright. @rsoeldner, PR would be appreciated. 😃
@rossabaker 👍 for a shared client/server model