mirror of
https://github.com/sirjonasxx/G-Earth.git
synced 2024-11-26 18:30:52 +01:00
small async packetsending change
This commit is contained in:
parent
684a30be3e
commit
86c694f8f8
@ -25,15 +25,13 @@ public class HConnection {
|
||||
public HConnection() {
|
||||
new Thread(() -> {
|
||||
while (true) {
|
||||
if (inHandler != null) {
|
||||
HPacket packet;
|
||||
while ((packet = sendToClientAsyncQueue.poll()) != null) {
|
||||
sendToClient(packet);
|
||||
}
|
||||
HPacket packet;
|
||||
while ((packet = sendToClientAsyncQueue.poll()) != null) {
|
||||
sendToClient(packet);
|
||||
}
|
||||
try {
|
||||
Thread.sleep(1);
|
||||
} catch (InterruptedException e) {
|
||||
} catch (InterruptedException e) { //java........................................
|
||||
e.printStackTrace();
|
||||
}
|
||||
}
|
||||
@ -41,11 +39,9 @@ public class HConnection {
|
||||
|
||||
new Thread(() -> {
|
||||
while (true) {
|
||||
if (outHandler != null) {
|
||||
HPacket packet;
|
||||
while ((packet = sendToServerAsyncQueue.poll()) != null) {
|
||||
sendToServer(packet);
|
||||
}
|
||||
HPacket packet;
|
||||
while ((packet = sendToServerAsyncQueue.poll()) != null) {
|
||||
sendToServer(packet);
|
||||
}
|
||||
try {
|
||||
Thread.sleep(1);
|
||||
|
Loading…
Reference in New Issue
Block a user