2014-10-22 18:38:44 +02:00
|
|
|
package eu.siacs.conversations.xmpp;
|
|
|
|
|
|
|
|
import eu.siacs.conversations.entities.Contact;
|
|
|
|
|
|
|
|
public interface OnContactStatusChanged {
|
2021-01-23 09:25:34 +01:00
|
|
|
void onContactStatusChanged(final Contact contact, final boolean online);
|
2014-10-22 18:38:44 +02:00
|
|
|
}
|