-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathChannelStatus.cs
More file actions
34 lines (29 loc) · 1.07 KB
/
ChannelStatus.cs
File metadata and controls
34 lines (29 loc) · 1.07 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
// =================================================================================================================================
// Copyright (c) RapidField LLC. Licensed under the MIT License. See LICENSE.txt in the project root for license information.
// =================================================================================================================================
using System;
namespace RapidField.SolidInstruments.SignalProcessing
{
/// <summary>
/// Specifies the status of an <see cref="IChannel" />.
/// </summary>
public enum ChannelStatus : Int32
{
/// <summary>
/// The status of the channel is not specified.
/// </summary>
Unspecified = 0,
/// <summary>
/// The channel is available and operable.
/// </summary>
Live = 1,
/// <summary>
/// The channel is available but deliberately silent.
/// </summary>
Silent = 2,
/// <summary>
/// The channel is unavailable.
/// </summary>
Unavailable = 3
}
}