Nexus.Client.Util.Threading.TrackedThread.RunThread C# (CSharp) Method

RunThread() private method

Executes the non-parameterized method from within the thread.
Once the method returns, the thread is removed from the TrackedThreadManager and exits.
private RunThread ( ) : void
return void
		private void RunThread()
		{
			try
			{
				this.m_tdsThreadMethod();
			}
			finally
			{
				TrackedThreadManager.RemoveThread(this);
			}
		}