blob: baf3790526e74100910050aec7d1fe9f728365e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace Tango.FSE.Common.Performance
{
/// <summary>
/// Represents a remote machine PPC performance monitoring provider.
/// </summary>
public interface IPerformanceProvider
{
/// <summary>
/// Occurs when a new performance monitoring frame is available.
/// </summary>
event EventHandler<PerformancePackageEventArgs> PerformancePackageAvailable;
}
}
|