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

RunParameterizedThread() private method

Executes the paramterized method from within the thread.
Once the method returns, the thread is removed from the TrackedThreadManager and exits.
private RunParameterizedThread ( object p_objParam ) : void
p_objParam object The parameter to pass to the thread.
return void
		private void RunParameterizedThread(object p_objParam)
		{
			try
			{
				this.m_ptsThreadMethod(p_objParam);
			}
			finally
			{
				TrackedThreadManager.RemoveThread(this);
			}
		}