Interface JingleMediaListener
-
- All Superinterfaces:
JingleListener
public interface JingleMediaListener extends JingleListener
Interface for listening to jmf events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
mediaClosed(PayloadType cand)
Notification that a payload type must be cancelled.void
mediaEstablished(PayloadType pt)
Notification that the jmf has been negotiated and established.
-
-
-
Method Detail
-
mediaEstablished
void mediaEstablished(PayloadType pt) throws SmackException.NotConnectedException, java.lang.InterruptedException
Notification that the jmf has been negotiated and established.- Parameters:
pt
- The payload type agreed.- Throws:
SmackException.NotConnectedException
- if the XMPP connection is not connected.java.lang.InterruptedException
- if the calling thread was interrupted.
-
mediaClosed
void mediaClosed(PayloadType cand)
Notification that a payload type must be cancelled.- Parameters:
cand
- The payload type that must be closed
-
-