``` override fun onMessage(webSocket: WebSocke...
# coroutines
e
Copy code
override fun onMessage(webSocket: WebSocket, text: String) {
            launch(CommonPool) { easyWs!!.textChannel.send(text) }
    }
It can reorder messages. I would replace
launch
with
runBlocking
here.