2014-10-22 18:38:44 +02: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 09:33:05 +02:00
|
|
|
void onIqPacketReceived(Account account, IqPacket packet);
|
2014-10-22 18:38:44 +02:00
|
|
|
}
|