Exemple #1
0
        void OnLocalInvitationFailureHandler(LocalInvitation localInvitation, LOCAL_INVITATION_ERR_CODE errorCode)
        {
            string msg = string.Format("OnLocalInvitationFailure channel:{0}, callee:{1} error:{2}",
                                       localInvitation.GetChannelId(), localInvitation.GetCalleeId(), errorCode);

            Debug.Log(msg);
            messageDisplay.AddTextToDisplay(msg, Message.MessageType.Info);
        }
Exemple #2
0
        void OnLocalInvitationRefusedHandler(LocalInvitation localInvitation, string response)
        {
            string msg = string.Format("OnLocalInvitationRefused channel:{0}, callee:{1}", localInvitation.GetChannelId(), localInvitation.GetCalleeId());

            Debug.Log(msg);
            messageDisplay.AddTextToDisplay(msg, Message.MessageType.Info);
        }
 void OnLocalInvitationReceivedByPeerHandler(LocalInvitation localInvitation)
 {
     Debug.Log("rtmCallManager  OnLocalInvitationReceivedByPeerHandler " + localInvitation.GetCalleeId() + "  " + localInvitation.GetChannelId());
 }