1
- using Microsoft . Win32 ;
1
+ using Microsoft . Extensions . Hosting ;
2
+ using Microsoft . Win32 ;
2
3
using System ;
3
4
using System . Collections . Generic ;
4
5
using System . Diagnostics ;
@@ -41,7 +42,7 @@ public static class Switcher
41
42
/// <summary>
42
43
/// Call once upon service start. Initializes necessary components and starts the timer.
43
44
/// </summary>
44
- internal static void Start ( CancellationToken cancellationToken )
45
+ internal static async void Start ( CancellationToken stoppingToken )
45
46
{
46
47
appOptions = new AppOptions ( ) ;
47
48
Logger . inst . EnableRealtimeStandardLogWrites = appOptions . CurrentOptions . EnableRealtimeLogging ;
@@ -70,7 +71,7 @@ internal static void Start(CancellationToken cancellationToken)
70
71
71
72
File . Delete ( CRASHED_FILE_PATH ) ; //"successful" initialization yippee
72
73
73
- Task forever = BeginTimerForever ( cancellationToken ) ;
74
+ Task forever = BeginTimerForever ( stoppingToken ) ;
74
75
75
76
/*
76
77
forever.ContinueWith(
@@ -86,6 +87,8 @@ internal static void Start(CancellationToken cancellationToken)
86
87
//doesn't actually serve a purpose for now
87
88
Logger . inst . Log ( "Detected that service stop was not completed on the last run." ) ;
88
89
}
90
+
91
+ await forever ;
89
92
}
90
93
private static int updateInterval ;
91
94
@@ -119,11 +122,11 @@ internal static void Stop()
119
122
/// <summary>
120
123
/// There should be only one of this running at any time.
121
124
/// </summary>
122
- private static Task BeginTimerForever ( CancellationToken cancellationToken )
125
+ private static async Task BeginTimerForever ( CancellationToken stoppingToken )
123
126
{
124
127
if ( timerRunning ) { throw new InvalidOperationException ( "This function cannot be called more than once" ) ; }
125
128
timerRunning = true ;
126
- while ( ! cancellationToken . IsCancellationRequested )
129
+ while ( ! stoppingToken . IsCancellationRequested )
127
130
{
128
131
129
132
for ( int i = runningUpdateTasks . Count - 1 ; i >= 0 ; i -- )
@@ -144,12 +147,10 @@ private static Task BeginTimerForever(CancellationToken cancellationToken)
144
147
145
148
}
146
149
147
- runningUpdateTasks . Add ( RunUpdateLogic ( ) ) ;
150
+ runningUpdateTasks . Add ( RunUpdateLogic ( ) ) ; //no identified need to handle cancelling the update logic
148
151
149
- Task . Delay ( updateInterval ) . Wait ( ) ; //move this to the beginning to make debugging easier
152
+ await Task . Delay ( updateInterval , stoppingToken ) ; //move this to the beginning of the loop to make attaching a debugger easier
150
153
}
151
-
152
- return Task . CompletedTask ;
153
154
}
154
155
155
156
private static async Task RunUpdateLogic ( )
0 commit comments