mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 22:32:06 +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.
|
* PacketListeners are invoked in the same order the stanzas arrived.
|
||||||
*/
|
*/
|
||||||
private final ThreadPoolExecutor executorService = new ThreadPoolExecutor(1, 1, 0, TimeUnit.SECONDS,
|
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
|
* 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.
|
* 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(
|
private final ExecutorService singleThreadedExecutorService = Executors.newSingleThreadExecutor(new SmackExecutorThreadFactory(
|
||||||
getConnectionCounter(), "Sync PacketListener Callback"));
|
getConnectionCounter(), "Single Threaded Executor"));
|
||||||
|
|
||||||
private Roster roster;
|
private Roster roster;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue