File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -433,9 +433,9 @@ public void RunAsync(string threadName)
433
433
/// Runs the poller in a specified thread - background/foreground, returning once the poller has started.
434
434
/// </summary>
435
435
/// <param name="threadName">The thread name to use.</param>
436
- /// <param name="longRunningPoller ">Allow the poller thread to be a long running
437
- /// poller (either foreground thread /background)</param>
438
- public void RunAsync ( string threadName , bool longRunningPoller )
436
+ /// <param name="isBackgroundThread ">Allow the poller thread to be a long running
437
+ /// poller (either foreground thread/background)</param>
438
+ public void RunAsync ( string threadName , bool isBackgroundThread )
439
439
{
440
440
CheckDisposed ( ) ;
441
441
if ( IsRunning )
@@ -444,7 +444,7 @@ public void RunAsync(string threadName, bool longRunningPoller)
444
444
var thread = new Thread ( Run )
445
445
{
446
446
Name = threadName ,
447
- IsBackground = ! longRunningPoller
447
+ IsBackground = isBackgroundThread
448
448
} ;
449
449
thread . Start ( ) ;
450
450
You can’t perform that action at this time.
0 commit comments