TaskStarting() public method

Notify that a task is starting.
public TaskStarting ( ) : void
return void
示例#1
0
        /// <summary>
        /// Process the specified task.  It will be processed either now,
        /// or queued to process on the thread pool.
        /// </summary>
        /// <param name="task">The task to process.</param>
        /// <param name="group">The group this task belongs to.</param>
        public void ProcessTask(IEngineTask task, TaskGroup group)
        {
            lock (this)
            {
                _activeTasks++;
            }
            if (group != null)
            {
                group.TaskStarting();
            }
            var item = new PoolItem(this, task, group);

            ThreadPool.QueueUserWorkItem(item.ThreadPoolCallback);
        }
示例#2
0
 /// <summary>
 /// Process the specified task.  It will be processed either now,
 /// or queued to process on the thread pool.
 /// </summary>
 /// <param name="task">The task to process.</param>
 /// <param name="group">The group this task belongs to.</param>
 public void ProcessTask(IEngineTask task, TaskGroup group)
 {
     lock (this)
     {
         _activeTasks++;
     }
     if (group != null)
         group.TaskStarting();
     var item = new PoolItem(this, task, group);
     ThreadPool.QueueUserWorkItem(item.ThreadPoolCallback);
 }
示例#3
0
 public void ProcessTask(IEngineTask task, TaskGroup group)
 {
     lock (this)
     {
         this._x16f1ed41ac673568++;
         if (group != null)
         {
             group.TaskStarting();
             if (0 != 0)
             {
                 return;
             }
         }
     }
     PoolItem item = new PoolItem(this, task, group);
     ThreadPool.QueueUserWorkItem(new WaitCallback(item.ThreadPoolCallback));
 }