Interface Chat

    • Method Detail

      • addListener

        void addListener​(ChatListener listener)
        Adds a new listener to the in-conference chat session.
        Parameters:
        listener - New chat listener that is being added.
      • removeListener

        void removeListener​(ChatListener listener)
        Removes a listener from the in-conference chat.
        Parameters:
        listener - Listener instance that is removed from the chat.
      • sendPrivateMessage

        void sendPrivateMessage​(Participant recipient,
                                java.lang.String message,
                                SendMessageCompletionHandler handler)
        Sends a private chat message to the selected recipient.
        Parameters:
        recipient - participant who is going to receive the message.
        message - the text of the message to send.
        handler - Object that wants to learn about the result of the operation, i.e., whether it was successful.
      • sendPublicMessage

        void sendPublicMessage​(java.lang.String message,
                               SendMessageCompletionHandler handler)
        Sends a chat message to everyone on the conference call.
        Parameters:
        message - the text of the message to send.
        handler - Object that wants to learn about the result of the operation, i.e., whether it was successful.
      • getChatParticipants

        void getChatParticipants​(ParticipantsCompletionHandler handler)
        Returns chat participants.
        Parameters:
        handler - Object that wants to learn about the result of the operation, i.e., whether it was successful.