private void OnApplicationConnectEvent(IntPtr handle, IntPtr evtHandle, IntPtr userData)
        {
            dz_connect_event_t evtType = DeezerApi.dz_connect_event_get_type(evtHandle);

            Logger.LogTrace("DeezerRenderer::OnApplicationConnectEvent evtType={0}", evtType);

            switch (evtType)
            {
            case dz_connect_event_t.DZ_CONNECT_EVENT_USER_OFFLINE_AVAILABLE:
                _evtAppUserOfflineAvailable.Set();
                break;

            case dz_connect_event_t.DZ_CONNECT_EVENT_USER_LOGIN_OK:
                _evtAppUserLoginOK.Set();
                break;
            }
        }