SevenDigital.Messaging.Infrastructure.ThreadWatcher.IsValidAndRunning C# (CSharp) Method

IsValidAndRunning() static private method

static private IsValidAndRunning ( Thread threadToWatch ) : bool
threadToWatch Thread
return bool
		static bool IsValidAndRunning(Thread threadToWatch)
		{
			return threadToWatch != null && threadToWatch.IsAlive;
		}