blob: 43836c2d6d57f769bddaa05d44887f0cb708346e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package com.juick.server.xmpp.router;
import rocks.xmpp.addr.Jid;
/**
* Created by vitalyster on 01.02.2017.
*/
public interface StreamHandler {
void ready();
void fail(final Exception ex);
boolean filter(Jid from, Jid to);
void stanzaReceived(String stanza);
}
|