mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
Align thread names
This commit is contained in:
parent
8e74f7faed
commit
8c8ac546a9
1 changed files with 4 additions and 4 deletions
|
@ -230,7 +230,7 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
|
|||
* PacketListeners are invoked in the same order the stanzas arrived.
|
||||
*/
|
||||
private final ThreadPoolExecutor executorService = new ThreadPoolExecutor(1, 1, 0, TimeUnit.SECONDS,
|
||||
new ArrayBlockingQueue<Runnable>(100), new SmackExecutorThreadFactory(connectionCounterValue, "IncomingNotifier"));
|
||||
new ArrayBlockingQueue<Runnable>(100), new SmackExecutorThreadFactory(connectionCounterValue, "Incoming Processor"));
|
||||
|
||||
/**
|
||||
* Creates an executor service just as {@link Executors#newCachedThreadPool()} would do, but with a keep alive time
|
||||
|
@ -257,7 +257,7 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
|
|||
* is the same as the order of the incoming stanzas. Therefore we use a <i>single</i> threaded executor service.
|
||||
*/
|
||||
private final ExecutorService singleThreadedExecutorService = Executors.newSingleThreadExecutor(new SmackExecutorThreadFactory(
|
||||
getConnectionCounter(), "Sync PacketListener Callback"));
|
||||
getConnectionCounter(), "Single Threaded Executor"));
|
||||
|
||||
private Roster roster;
|
||||
|
||||
|
|
Loading…
Reference in a new issue