|
|
|
|
|
by hombre_fatal
505 days ago
|
|
I've done my share of building websocket servers from scratch, but when you don't use libraries like ActiveCable or socket.io, you have to build your own MessageID reconciliation so that you can have request/response cycles. Which is generally what you want (or eventually want) in a websocket-heavy application. send(payload).then(reply => ...)
|
|
But client and server use it to maintain a record of events.