seven4pl
seven4pl
Same here... For example: sending 300 messages (offline) with AckWithTimeout (5000 ms), and then after eg. 2 seconds emit new message. **Exception java.util.ConcurrentModificationException:** at java.util.LinkedList$ListItr.checkForComodification (LinkedList.java:970) at java.util.LinkedList$ListItr.next (LinkedList.java:892) at...
@liangyuanpeng temporary solved by adding synchronized - Socket.java: ``` synchronized(sendBuffer){ // remove the packet from the buffer (if applicable) Iterator iterator = sendBuffer.iterator(); while (iterator.hasNext()) { if (iterator.next().id == ackId)...
@darrachequesne hi, I have a very similar case with io.socket.client.Socket.clearAcks, when sending about 50 ACK's with timeout: 4 diffrent devices, Android 13 (SDK 33) and Android 14 (SDK 34), newest...