From a2d19f06acc562ee6e5c439ea38cb25bd7bcb0cd Mon Sep 17 00:00:00 2001 From: Chris Howie Date: Thu, 3 Jan 2013 12:18:17 -0500 Subject: [PATCH] Rename InterruptThread to StopRequested --- Cdh.Toolkit.Services/ThreadedService.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cdh.Toolkit.Services/ThreadedService.cs b/Cdh.Toolkit.Services/ThreadedService.cs index c063d96..42b453b 100644 --- a/Cdh.Toolkit.Services/ThreadedService.cs +++ b/Cdh.Toolkit.Services/ThreadedService.cs @@ -73,13 +73,13 @@ public virtual void Stop() threadCopy = thread; ThreadRunning = false; - InterruptThread(); + StopRequested(); } threadCopy.Join(); } - protected virtual void InterruptThread() + protected virtual void StopRequested() { thread.Interrupt(); }