文章分类 -  北风之神

一个实例明白AutoResetEvent和 ManulResetEvent的用法
摘要:public class WaitHandlerExample { public static AutoResetEvent waitHandler; public static ManualResetEvent manualWaitHandler; public static void ThreadPoolMain() { waitHandler = new AutoResetEvent(false); ... 阅读全文

posted @ 2012-06-09 09:58 HOT SUMMER 阅读(157) 评论(0) 推荐(0)

AutoResetEvent 类
摘要:using System;using System.Threading;// Visual Studio: Replace the default class in a Console project with // the following class.class Example{ private static AutoResetEvent event_1 = new AutoResetEvent(true); private static AutoResetEvent event_2 = new AutoResetEvent(false); ... 阅读全文

posted @ 2012-06-09 09:56 HOT SUMMER 阅读(147) 评论(0) 推荐(0)

导航