mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-21 22:02:06 +01:00
Rename "Packet (Reader|Writer)" to just Reader or Writer
This commit is contained in:
parent
dfe5c5c09f
commit
6dfc20ee5e
1 changed files with 5 additions and 5 deletions
|
@ -647,9 +647,9 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
|
|||
}
|
||||
}
|
||||
}
|
||||
// Start the packet writer. This will open an XMPP stream to the server
|
||||
// Start the writer thread. This will open an XMPP stream to the server
|
||||
packetWriter.init();
|
||||
// Start the packet reader. The startup() method will block until we
|
||||
// Start the reader thread. The startup() method will block until we
|
||||
// get an opening stream packet back from server
|
||||
packetReader.init();
|
||||
}
|
||||
|
@ -1009,7 +1009,7 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
|
|||
public void run() {
|
||||
parsePackets();
|
||||
}
|
||||
}, "Smack Packet Reader (" + getConnectionCounter() + ")");
|
||||
}, "Smack Reader (" + getConnectionCounter() + ")");
|
||||
}
|
||||
|
||||
/**
|
||||
|
@ -1305,7 +1305,7 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
|
|||
public void run() {
|
||||
writePackets();
|
||||
}
|
||||
}, "Smack Packet Writer (" + getConnectionCounter() + ")");
|
||||
}, "Smack Writer (" + getConnectionCounter() + ")");
|
||||
}
|
||||
|
||||
private boolean done() {
|
||||
|
@ -1383,7 +1383,7 @@ public class XMPPTCPConnection extends AbstractXMPPConnection {
|
|||
catch (InterruptedException e) {
|
||||
if (!queue.isShutdown()) {
|
||||
// Users shouldn't try to interrupt the packet writer thread
|
||||
LOGGER.log(Level.WARNING, "Packet writer thread was interrupted. Don't do that. Use disconnect() instead.", e);
|
||||
LOGGER.log(Level.WARNING, "Writer thread was interrupted. Don't do that. Use disconnect() instead.", e);
|
||||
}
|
||||
}
|
||||
return packet;
|
||||
|
|
Loading…
Reference in a new issue