• 大小: 6.61KB
    文件类型: .cs
    金币: 1
    下载: 0 次
    发布日期: 2020-12-26
  • 语言: C#
  • 标签: 线程  管理  

资源简介

线程管理示例代码

资源截图

代码片段和文件信息

using System;
using System.Threading;
using System.Collections;



 /*
     How to use Thread Classs
     * 
     * ==============
     * public ELMService()
        {
            InitializeComponent();
            etm.ClalThreadPool(“EmailThreads“ (uint)ApplicationInfo.EmailParsingThreads);
        } 
     * //queue items in thread for processing.
     * etm.QueueUserEmailWorkItem(new WaitCallback(ELMService_UpdateLogHandler) objSupplier);
       public void ELMService_UpdateLogHandler(object objmsg)
     * {
     *  return;
     * }
     * 
     */

namespace WorkflowManagement
{

    public delegate void ThreadActivationCallback();
    public delegate void JobFinishCallback(object state);
    public delegate bool onerrorCallback(Exception exc);

    public class ThreadManager
    {
  

评论

共有 条评论