chat-websocket
chat-websocket copied to clipboard
Realtime chat by utilizing http-kit's websocket support
Results
2
chat-websocket issues
Sort by
recently updated
recently updated
newest added
Just curious about the use of `swap!` on this line, https://github.com/http-kit/chat-websocket/blob/master/src-cljs/main.cljs#L36, where you have ``` (swap! max-id #(.-id msg)) ``` in case there is concurrency I'm not aware of. Wouldn't...