1
0
Fork 0
mirror of https://codeberg.org/Mercury-IM/Smack synced 2024-09-28 19:00:00 +02:00

Merge branch '4.0'

Conflicts:
	smack-core/src/main/java/org/jivesoftware/smack/XMPPConnection.java
This commit is contained in:
Florian Schmaus 2014-07-16 10:52:58 +02:00
commit 1ed5c48bcc

View file

@ -168,7 +168,12 @@ public abstract class AbstractXMPPConnection implements XMPPConnection {
protected XMPPInputOutputStream compressionHandler; 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)); new SmackExecutorThreadFactory(connectionCounterValue));
/** /**