forked from sbozzie/test-intel
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathIntelStatus.cs
More file actions
43 lines (42 loc) · 1.91 KB
/
Copy pathIntelStatus.cs
File metadata and controls
43 lines (42 loc) · 1.91 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
35
36
37
38
39
40
41
42
43
using System;
namespace PleaseIgnore.IntelMap {
/// <summary>
/// Represents the current condition of a <see cref="IntelChannel" />
/// or <see cref="IntelReporter" />.
/// </summary>
public enum IntelStatus {
/// <summary><see cref="IntelReporter.Start" /> has not yet been
/// called.</summary>
Stopped = 0,
/// <summary><see cref="IntelReporter.Start" /> has been called and the
/// component is currently initializing.</summary>
Starting = 1,
/// <summary>The <see cref="IntelReporter" /> is running, but EVE is
/// either not running or the channels are not open.</summary>
Waiting = 2,
/// <summary>The <see cref="IntelReporter" /> is actively parsing chat
/// logs and reporting intel.</summary>
Active = 3,
/// <summary><see cref="IntelReporter.Stop" /> has been called and the
/// component is currently shutting down.</summary>
Stopping = 4,
/// <summary><see cref="IDisposable.Dispose" /> has been called and the
/// component is currently shutting down.</summary>
Disposing = 5,
/// <summary>The call to <see cref="IDisposable.Dispose" /> has been
/// completed.</summary>
Disposed = 6,
/// <summary>The <see cref="IntelChannel" /> is disabled due to an
/// illegal or non-existant <see cref="IntelChannel.Path" />.</summary>
InvalidPath = 7,
/// <summary>An internal fatal error has occured and the component can
/// no longer operate.</summary>
FatalError = 8,
/// <summary>A network or server error is preventing communications with
/// the intel server.</summary>
NetworkError = 9,
/// <summary>The intel server rejected our authentication request.
/// <see cref="IntelChannel" /> will retry periodically.</summary>
AuthenticationError = 10
}
}