private static void OnLeaveChannelResultNotifyCallback(int result)
        {
#if UNITY_STANDALONE_WIN || UNITY_STANDALONE_OSX
            if ((IAliRtcEngine.OnLeaveChannelResultNotify != null) && AliRtcEngineCallBackQueue.Current != null)
            {
                AliRtcEngineCallBackQueue.Current.EnQueue(() =>
                {
                    IAliRtcEngine.OnLeaveChannelResultNotify(result);
                });
            }
#else
            if ((instance.OnLeaveChannelResultNotify != null) && AliRtcEngineCallBackQueue.Current != null)
            {
                AliRtcEngineCallBackQueue.Current.EnQueue(() =>
                {
                    instance.OnLeaveChannelResultNotify(result);
                });
            }
#endif
        }