blob: 036176e6f16b487cf869fa4513bed0e9345cf1f7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
using System;
namespace Tango.Telemetry
{
/// <summary>
/// Specifies the direction in which historical telemetry data should be published.
/// </summary>
public enum TelemetryHistorySourceDirection
{
/// <summary>
/// Indicates that historical telemetry should be published in chronological order, from oldest to newest.
/// </summary>
Ascending,
/// <summary>
/// Indicates that historical telemetry should be published in reverse chronological order, from newest to oldest.
/// </summary>
Descending,
}
}
|