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
66 lines (65 loc) · 2.25 KB
/
Copy pathIntelStatus.cs
File metadata and controls
66 lines (65 loc) · 2.25 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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace PleaseIgnore.IntelMap {
/// <summary>
/// Represents the current condition of a <see cref="IntelChannel"/>.
/// </summary>
public enum IntelStatus {
/// <summary>
/// <see cref="IntelChannel.Start"/> has not yet been called
/// </summary>
Stopped = 0,
/// <summary>
/// <see cref="IntelChannel.Start"/> has been called and the
/// component is current initializing
/// </summary>
Starting = 1,
/// <summary>
/// The <see cref="IntelChannel"/> is running, but EVE is either
/// not running or the channel is not open.
/// </summary>
Waiting = 2,
/// <summary>
/// The <see cref="IntelChannel"/> is actively parsing chat logs
/// and reporting intel.
/// </summary>
Active = 3,
/// <summary>
/// <see cref="IntelChannel.Stop"/> has been called and the
/// component is currently shutting down.
/// </summary>
Stopping = 4,
/// <summary>
/// <see cref="IntelChannel.Dispose"/> has been called and the
/// component is currently shutting down.
/// </summary>
Disposing = 5,
/// <summary>
/// The call to <see cref="IntelChannel.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>
/// A fatal error has occured and the <see cref="IntelChannel"/>
/// 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. Will
/// retry periodically.
/// </summary>
AuthenticationError = 10
}
}