コード例 #1
0
        /// <summary>
        /// Notifies subscribers on item stop
        /// </summary>
        /// <param name="item">Item that just has been stopped.</param>
        internal void NotifyItemStop(IPlayItem item)
        {
            IStreamAwareScopeHandler handler = GetStreamAwareHandler();

            if (handler != null)
            {
                try {
                    handler.StreamPlaylistItemStop(this, item);
                } catch (Exception ex) {
                    log.Error("Error notify streamPlaylistItemStop", ex);
                }
            }
        }