SIPSorcery.Net.RTSPClient.RTPQueueFull C# (CSharp) Méthode

RTPQueueFull() private méthode

private RTPQueueFull ( ) : void
Résultat void
        private void RTPQueueFull()
        {
            try
            {
                logger.Warn("RTSPCient.RTPQueueFull purging frames list.");
                System.Diagnostics.Debug.WriteLine("RTSPCient.RTPQueueFull purging frames list.");

                lock (_frames)
                {
                    _frames.Clear();
                }

                _lastCompleteFrameTimestamp = 0;
            }
            catch (Exception excp)
            {
                logger.Error("Exception RTSPClient.RTPQueueFull. " + excp);
            }
        }