IWorker.cs
时间:2010-08-21 来源:ha666
using System;
  namespace ThreadBase
  {
      /// <summary>
      /// Interface definition for all service thread
      /// </summary>
      public interface IWorker : IDisposable
      {
          /// <summary>
          /// User defined function
          /// </summary>
          void Run(object threadContext);
      }
  }
 相关阅读 更多 + 
    
  









