Esempio n. 1
0
        void OnRemoteInvitationFailureHandler(RemoteInvitation remoteInvitation, REMOTE_INVITATION_ERR_CODE errorCode)
        {
            string msg = string.Format("OnRemoteInvitationFailure channel:{0}, callee:{1}", remoteInvitation.GetChannelId(), remoteInvitation.GetCallerId());

            Debug.Log(msg);
            messageDisplay.AddTextToDisplay(msg, Message.MessageType.Info);
        }
Esempio n. 2
0
        void OnRemoteInvitationCanceledHandler(RemoteInvitation remoteInvitation)
        {
            string msg = string.Format("OnRemoteInvitationCanceled channel:{0}, callee:{1}", remoteInvitation.GetChannelId(), remoteInvitation.GetCallerId());

            Debug.Log(msg);
            messageDisplay.AddTextToDisplay(msg, Message.MessageType.Info);
        }
Esempio n. 3
0
 void OnRemoteInvitationReceivedHandler(RemoteInvitation remoteInvitation)
 {
     Debug.Log("OnRemoteInvitationReceivedHandler  " + remoteInvitation.GetCallerId() + "  " + remoteInvitation.GetChannelId());
 }