I have found a critical problem in Smack: It is not ensured that packets are delivered in the same order in which they have been received. For my use case this is the serious problem. I am using the Smack PubSub extension (XEP-0060: Publish-Subscribe) as a remote event bus where the event sequence must be ensured.
Problem description:
The problem is caused by the AbstractXMPPConnection which uses a ScheduledExecutorService with exactly two threads (Line: 171). Even when packet P1 is received and parsed after packet P2, it is possible that P1 and P2 are delivered in parallel because of two free threads in the pool: This can result to the problem that a PacketListener receives P2 before P1.
Solution:
If parallel packet delivery is required, Smack must be extended by a smarter mechanism that ensures the packet order for each listener. That is not an easy task. For the next release 4.1.0-alpha1 I recommend to reduce the thread pool size used by ScheduledExecutorService in AbstractXMPPConnection to one. That ensures the order during event delivery:
... = new ScheduledThreadPoolExecutor(2, new SmackExecutorThreadFactory(connectionCounterValue));
->
... = new ScheduledThreadPoolExecutor(1, new SmackExecutorThreadFactory(connectionCounterValue));
@Flow:
You are much deeper inside Smack's packet processing and delivery process. What are your thoughts to the problem?