2014-10-22 16:38:44 +00:00
|
|
|
package eu.siacs.conversations.xmpp;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.entities.Account;
|
|
|
|
import eu.siacs.conversations.xmpp.stanzas.IqPacket;
|
|
|
|
|
|
|
|
public interface OnIqPacketReceived extends PacketReceived {
|
2017-05-05 07:33:05 +00:00
|
|
|
void onIqPacketReceived(Account account, IqPacket packet);
|
2014-10-22 16:38:44 +00:00
|
|
|
}
|