Uses of Interface
org.jivesoftware.smack.PacketInterceptor

Packages that use PacketInterceptor
org.jivesoftware.smack Core classes of the Smack API. 
org.jivesoftware.smackx.muc Classes and Interfaces that implement Multi-User Chat (MUC). 
 

Uses of PacketInterceptor in org.jivesoftware.smack
 

Methods in org.jivesoftware.smack with parameters of type PacketInterceptor
 void ChatManager.addOutgoingMessageInterceptor(PacketInterceptor packetInterceptor)
          Adds an interceptor which intercepts any messages sent through chats.
 void ChatManager.addOutgoingMessageInterceptor(PacketInterceptor packetInterceptor, PacketFilter filter)
           
 void Connection.addPacketInterceptor(PacketInterceptor packetInterceptor, PacketFilter packetFilter)
          Registers a packet interceptor with this connection.
 void XMPPConnection.addPacketWriterInterceptor(PacketInterceptor packetInterceptor, PacketFilter packetFilter)
          Deprecated. replaced by Connection.addPacketInterceptor(PacketInterceptor, PacketFilter).
 void Connection.removePacketInterceptor(PacketInterceptor packetInterceptor)
          Removes a packet interceptor.
 void XMPPConnection.removePacketWriterInterceptor(PacketInterceptor packetInterceptor)
          Deprecated. replaced by Connection.removePacketInterceptor(PacketInterceptor).
 

Uses of PacketInterceptor in org.jivesoftware.smackx.muc
 

Classes in org.jivesoftware.smackx.muc that implement PacketInterceptor
 class DeafOccupantInterceptor
          Packet interceptor that will intercept presence packets sent to the MUC service to indicate that the user wants to be a deaf occupant.
 

Methods in org.jivesoftware.smackx.muc with parameters of type PacketInterceptor
 void MultiUserChat.addPresenceInterceptor(PacketInterceptor presenceInterceptor)
          Adds a new PacketInterceptor that will be invoked every time a new presence is going to be sent by this MultiUserChat to the server.
 void MultiUserChat.removePresenceInterceptor(PacketInterceptor presenceInterceptor)
          Removes a PacketInterceptor that was being invoked every time a new presence was being sent by this MultiUserChat to the server.