Package com.opentok.android
Interface Session.StreamCaptionsPropertiesListener
-
- Enclosing class:
- Session
public static interface Session.StreamCaptionsPropertiesListener
Monitors when caption properties of streams in the session change.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onStreamHasCaptionsChanged(Session session, Stream stream, boolean hasCaptions)
Called when streams in the session changes value between having captions and not having captions.
-
-
-
Method Detail
-
onStreamHasCaptionsChanged
void onStreamHasCaptionsChanged(Session session, Stream stream, boolean hasCaptions)
Called when streams in the session changes value between having captions and not having captions.- Parameters:
session
- The session containing the stream.stream
- The stream.hasCaptions
- Whether the stream has captions (true
) or not (false
).
-
-