Update InternalClientManager
This commit is contained in:
parent
b6de3cf3bb
commit
bbf7cd9275
@ -1,6 +1,5 @@
|
|||||||
package it.tdlight.common;
|
package it.tdlight.common;
|
||||||
|
|
||||||
import it.tdlight.jni.TdApi.Object;
|
|
||||||
import java.util.concurrent.ConcurrentHashMap;
|
import java.util.concurrent.ConcurrentHashMap;
|
||||||
import java.util.concurrent.atomic.AtomicLong;
|
import java.util.concurrent.atomic.AtomicLong;
|
||||||
import java.util.concurrent.atomic.AtomicReference;
|
import java.util.concurrent.atomic.AtomicReference;
|
||||||
@ -35,6 +34,9 @@ public class InternalClientManager implements AutoCloseable {
|
|||||||
handler.handleEvents(isClosed, clientEventIds, clientEvents);
|
handler.handleEvents(isClosed, clientEventIds, clientEvents);
|
||||||
} else {
|
} else {
|
||||||
System.err.println("Unknown client id " + clientId + ", " + clientEvents.length + " events have been dropped!");
|
System.err.println("Unknown client id " + clientId + ", " + clientEvents.length + " events have been dropped!");
|
||||||
|
for (Object clientEvent : clientEvents) {
|
||||||
|
System.err.println(clientEvent);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (isClosed) {
|
if (isClosed) {
|
||||||
|
Loading…
Reference in New Issue
Block a user