Crossmute functions
Understand the different actions that occur when you call various crossmuting functions.
Read time 1 minuteLast updated 2 days ago
The following list details the actions that occur when you call various crossmuting functions.
-
- Returns a TSet of all AccountIds that are crossmuted for the current ILoginSession.
ILoginSession::CrossMutedCommunications() -
- Sets the crossmuting status of a single AccountId for the
ILoginSession::BeginSetCrossMutedCommunications(AccountId &account, bool &muted, FOnBeginSetCrossMutedCommunicationsDelegate theDelegate).ILoginSession- When run with an AccountId and a muted value of true, this action prevents the AccountId from sending or receiving voice or text communications.
- When run with an AccountId and a muted value of false, this action allows AccountIds that were previously crossmuted to communicate normally.
-
- Sets the crossmuting status of a TSet of AccountIds.
ILoginSession::BeginSetCrossMutedCommunications(TSet<AccountId> &accountIdSet, bool &muted, FOnBeginSetCrossMutedCommunicationsDelegate theDelegate)- When run with a TSet of AccountIds and a muted value of true, this action prevents the TSet of AccountIds from sending or receiving voice or text communications.
- When run with a TSet of AccountIds and a muted value of false, this action removes the TSet of AccountIds from the list, which allows the AccountIds to send or receive voice and text communications in any channels where they are not muted.
CrossMutedCommunications
-
- Clears any crossmuted communications in the
ILoginSession::ClearCrossMutedCommuncations(FOnBeginClearCrossMutedCommunicationsCompletedDelegate theDelegate), which allows for the sending or receiving of text and voice communications that are not prevented by some other method.ILoginSession