C#多线程工作列队

来自:http://dotnet.chinaitlab.com/CSharp/815313_3.html

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;

namespace MultithreadedWorkQueue
{
    public delegate void UserWorkEventHandler<T>(object sender, WorkQueue<T>.EnqueueEventArgs e);
    public class WorkQueue<T>
    {
        private bool IsWorking; //表明处理线程是否正在工作
        private object lockIsWorking = new object();//对IsWorking的同步对象
        private Queue<T> queue; //实际的队列
        private object lockObj = new object(); //队列同步对象

        /// <summary>
        /// 绑定用户需要对队列中的item对象
        /// 施加的操作的事件
        /// </summary>
        public event UserWorkEventHandler<T> UserWork;
        public WorkQueue(int n)
        {
            queue = new Queue<T>(n);
        }
        public WorkQueue()
        {
            queue = new Queue<T>();
        }

        /// <summary>
        /// 谨慎使用此函数,
        /// 只保证此瞬间,队列值为空
        /// </summary>
        /// <returns></returns>
        public bool IsEmpty()
        {
            lock (lockObj)
            {
                return queue.Count == 0;
            }
        }

        private bool isOneThread;
        /// <summary>
        /// 队列处理是否需要单线程顺序执行
        /// ture表示单线程处理队列的T对象
        /// 默认为false,表明按照顺序出队,但是多线程处理item
        /// *****注意不要频繁改变此项****
        /// </summary>
        public bool WorkSequential
        {
            get
            {
                return isOneThread;
            }
            set
            {
                isOneThread = value;
            }
        }

        /// <summary>
        /// 向工作队列添加对象,
        /// 对象添加以后,如果已经绑定工作的事件
        /// 会触发事件处理程序,对item对象进行处理
        /// </summary>
        /// <param name="item">添加到队列的对象</param>
        public void EnqueueItem(T item)
        {
            lock (lockObj)
            {
                try
                {
                    queue.Enqueue(item);
                }
                catch (Exception)
                {
                    throw new OutOfMemoryException("队列内存溢处");
                }               
            }
            lock (lockIsWorking)
            {
                if (!IsWorking)
                {
                    IsWorking = true;
                    ThreadPool.QueueUserWorkItem(doUserWork);
                }
            }
        }

        /// <summary>
        /// 处理队列中对象的函数
        /// </summary>
        /// <param name="o"></param>
        private void doUserWork(object o)
        {
            try
            {
                T item;
                while (true)
                {
                    lock (lockObj)
                    {
                        if (queue.Count > 0)
                        {
                            item = queue.Dequeue();
                        }
                        else
                        {
                            return;
                        }
                    }
                    if (!item.Equals(default(T)))
                    {
                        if (isOneThread)
                        {
                            if (UserWork != null)
                            {
                                UserWork(this, new EnqueueEventArgs(item));
                            }
                        }
                        else
                        {
                            ThreadPool.QueueUserWorkItem(obj =>
                            {
                                if (UserWork != null)
                                {
                                    UserWork(this, new EnqueueEventArgs(obj));
                                }
                            }, item);
                        }
                    }
                }
            }
            finally
            {
                lock (lockIsWorking)
                {
                    IsWorking = false;
                }
            }
        }
        /// <summary>
        /// UserWork事件的参数,包含item对象
        /// </summary>

        public class EnqueueEventArgs : EventArgs
        {
            public T Item { get; private set; }
            public EnqueueEventArgs(object item)
            {
                try
                {
                    Item = (T)item;
                }
                catch (Exception)
                {
                    throw new InvalidCastException("object to T 转换失败");
                }
            }
        }
    }
}




 

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading;
using System.Diagnostics;

namespace MultithreadedWorkQueue
{
    class Program
    {
        static void Main(string[] args)
        {
            WorkQueue<int> workQueue = new WorkQueue<int>();
            workQueue.UserWork += new UserWorkEventHandler<int>(workQueue_UserWork);
            //workQueue.WorkSequential = true;
            Stopwatch watch = new Stopwatch();
            watch.Start();
            ThreadPool.QueueUserWorkItem(o =>
            {
                for (int i = 0; i < 90000000; i++)
                {
                    workQueue.EnqueueItem(i);
                }
            });
            Console.ReadKey();
            watch.Stop();
            Console.WriteLine("执行:{0}ms", watch.ElapsedMilliseconds);
            Console.WriteLine(workQueue.IsEmpty());
            Console.ReadKey();
        }
        static void workQueue_UserWork(object sender, WorkQueue<int>.EnqueueEventArgs e)
        {
            int n = e.Item;
            if(n%10000==0)
            Console.WriteLine(e.Item.ToString());
        }
    }
}


 

  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值