1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-07-03 00:32:35 +02:00

Align thread names

This commit is contained in:
Florian Schmaus 2015-01-10 00:51:57 +01:00
parent 8e74f7faed
commit 8c8ac546a9

View file

@ -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;