using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Tango.FSE.Common.Performance { /// /// Represents a remote machine PPC performance monitoring provider. /// public interface IPerformanceProvider { /// /// Occurs when a new performance monitoring frame is available. /// event EventHandler PerformancePackageAvailable; } }