koush / AndroidAsync

Asynchronous socket, http(s) (client+server) and websocket library for android. Based on nio, not threads.
Other
7.51k stars 1.56k forks source link

websocket server will block after send big text string #702

Open hugebear opened 2 years ago

hugebear commented 2 years ago

start a websocket server by androidasync use another websocket client (eg. postman) to connect server call websocket.send(String s) to send a big size (eg. 20000 byte) text to client the client will not receive the message after block, client will not receive any message from server anymore

hugebear commented 2 years ago

correct the eg size, 200000 byte.