1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-07-02 16:16:43 +02:00
Smack/smack-extensions/src/main/java/org/jivesoftware/smackx/jingle/callbacks/JingleTransportCallback.java

14 lines
309 B
Java
Raw Normal View History

2017-07-27 18:09:49 +02:00
package org.jivesoftware.smackx.jingle.callbacks;
import org.jivesoftware.smackx.bytestreams.BytestreamSession;
/**
* Created by vanitas on 27.07.17.
*/
public interface JingleTransportCallback {
void onTransportReady(BytestreamSession bytestreamSession);
void onTransportFailed(Exception e);
}