1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-06-23 20:14:51 +02:00

Use single threaded ExecutorService

for PacketListeners. Fixes SMACK-583.
This commit is contained in:
Florian Schmaus 2014-07-16 10:49:28 +02:00
parent bd0ada480b
commit cea79d1bb8

View file

@ -200,7 +200,12 @@ public abstract class XMPPConnection {
protected XMPPInputOutputStream compressionHandler;
private final ScheduledExecutorService executorService = new ScheduledThreadPoolExecutor(2,
/**
* ExecutorService used to invoke the PacketListeners on newly arrived and parsed stanzas. It is
* important that we use a <b>single threaded ExecutorService</b> in order to guarantee that the
* PacketListeners are invoked in the same order the stanzas arrived.
*/
private final ScheduledExecutorService executorService = new ScheduledThreadPoolExecutor(1,
new SmackExecutorThreadFactory(connectionCounterValue));
/**