public override void OnNoticeReceived(AVIMNotice notice)
        {
            var initBt            = notice.RawData["initBy"] as string;
            var newMasterClientId = notice.RawData["masterClientId"] as string;

            Play.MasterClientSwitch(initBt, newMasterClientId);
            base.OnNoticeReceived(notice);
        }