-
Notifications
You must be signed in to change notification settings - Fork 56
/
EventIds.cs
32 lines (27 loc) · 2.64 KB
/
EventIds.cs
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
namespace TimeWarp.State.Plus;
internal class EventIds
{
// Feature - ActionTracking
// Pipeline - Middleware
public static readonly EventId ActionTrackingBehavior_StartTracking = new(1000, nameof(ActionTrackingBehavior_StartTracking));
public static readonly EventId ActionTrackingBehavior_StartProcessing = new(1001, nameof(ActionTrackingBehavior_StartProcessing));
public static readonly EventId ActionTrackingBehavior_CompletedProcessing = new(1002, nameof(ActionTrackingBehavior_CompletedProcessing));
public static readonly EventId ActionTrackingBehavior_CompletedTracking = new(1003, nameof(ActionTrackingBehavior_CompletedTracking));
// Feature - PersistentStatePostProcessor
public static readonly EventId PersistentStatePostProcessor_StartProcessing = new(1100, nameof(PersistentStatePostProcessor_StartProcessing));
public static readonly EventId PersistentStatePostProcessor_SaveToSessionStorage = new(1101, nameof(PersistentStatePostProcessor_SaveToSessionStorage));
public static readonly EventId PersistentStatePostProcessor_SaveToLocalStorage = new(1102, nameof(PersistentStatePostProcessor_SaveToLocalStorage));
// Feature - StateInitializedNotificationHandler
public static readonly EventId StateInitializedNotificationHandler_Handling = new(1200, nameof(StateInitializedNotificationHandler_Handling));
public static readonly EventId StateInitializedNotificationHandler_LoadActionSetNotFound = new(1201, nameof(StateInitializedNotificationHandler_LoadActionSetNotFound));
// Feature - PersistenceService
public static readonly EventId PersistenceService_LoadState = new(1300, nameof(PersistenceService_LoadState));
public static readonly EventId PersistenceService_LoadState_SerializedState = new(1301, nameof(PersistenceService_LoadState_SerializedState));
public static readonly EventId PersistenceService_LoadState_DeserializationError = new(1302, nameof(PersistenceService_LoadState_DeserializationError));
// Feature - MultiTimerPostProcessor
public static readonly EventId MultiTimerPostProcessor_TimerStarted = new(1400, nameof(MultiTimerPostProcessor_TimerStarted));
public static readonly EventId MultiTimerPostProcessor_TimerElapsed = new(1401, nameof(MultiTimerPostProcessor_TimerElapsed));
public static readonly EventId MultiTimerPostProcessor_TimerRestarted = new(1402, nameof(MultiTimerPostProcessor_TimerRestarted));
public static readonly EventId MultiTimerPostProcessor_TimerRestartAttemptFailed = new(1403, nameof(MultiTimerPostProcessor_TimerRestartAttemptFailed));
public static readonly EventId MultiTimerPostProcessor_ProcessingRequest = new(1404, nameof(MultiTimerPostProcessor_ProcessingRequest));
}