Package com.opentok.android
Interface Session.MuteListener
-
- Enclosing class:
- Session
public static interface Session.MuteListener
Monitors when a moderator mutes streams in the session or disables the mute state in the session.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
onMuteForced(Session session, MuteForcedInfo info)
Invoked when a moderator mutes streams in the session or disables the mute state in the session.
-
-
-
Method Detail
-
onMuteForced
void onMuteForced(Session session, MuteForcedInfo info)
Invoked when a moderator mutes streams in the session or disables the mute state in the session.- Parameters:
session
- The session in which the moderator muted streams or disabled the mute state.info
- Call thegetActive
method of this object to determine if the moderator has muted streams in the session (true
) or disabled the mute state in the session (false
).- See Also:
Session.forceMuteAll(Iterable)
,Session.disableForceMute()
,PublisherKit.onMuteForced()
, Muting the audio of streams in a session \
-
-