Added Javadoc note about single thread used for all listeners.

git-svn-id: http://svn.igniterealtime.org/svn/repos/smack/trunk@2088 b35dd754-fafc-0310-a699-88a17e54d16e
This commit is contained in:
Matt Tucker 2003-09-18 20:38:12 +00:00 committed by mtucker
parent 796b70de23
commit 690ba2f345
1 changed files with 5 additions and 1 deletions

View File

@ -68,7 +68,11 @@ import org.jivesoftware.smack.filter.PacketFilter;
public interface PacketListener {
/**
* Process the next packet sent to this packet listener.
* Process the next packet sent to this packet listener.<p>
*
* A single thread is responsible for invoking all listeners, so
* it's very important that implementations of this method not block
* for any extended period of time.
*
* @param packet the packet to process.
*/