EpLibrary.cs.BaseWorkerThread.Push C# (CSharp) Méthode

Push() public méthode

Push in the new work to the work pool.
public Push ( BaseJob work ) : void
work BaseJob the new work to put into the work pool.
Résultat void
		public void Push(BaseJob  work)
        {
            m_workPool.Enqueue(work);
            if(m_lifePolicy==ThreadLifePolicy.SUSPEND_AFTER_WORK)
                Resume();
        }