1
0
Fork 0
mirror of https://github.com/vanitasvitae/Smack.git synced 2024-06-30 15:16:42 +02:00
Smack/smack-extensions/src/main/java/org/jivesoftware/smackx/jingle/JingleDescriptionController.java

17 lines
493 B
Java
Raw Normal View History

2017-07-27 15:18:18 +02:00
package org.jivesoftware.smackx.jingle;
/**
* Created by vanitas on 27.07.17.
*/
public interface JingleDescriptionController {
enum State {
pending, //Not yet accepted by us/peer
negotiating, //Accepted, but still negotiating transports etc.
active, //Bytestream initialized and active
cancelled, //We/Peer cancelled the transmission
ended //Successfully ended
}
State getState();
}