用异步委托(回调)替换线程(不是 ThreadPool 线程)。
我的场景:为每个客户端生成一个 Thread/del.beginInvoke()。
据我说,
原因
- 需要通过回调通知/在回调中再次调用委托
- 避免线程开销,(代表使用线程池线程)
- 传递参数(避免转换为对象)并需要方法的返回值。
如果上述原因有误,请纠正我。
- 还有其他原因吗?
- 在什么情况下,我到底需要用异步委托做一些线程不能做的事情?
3.性能?
例子
public delegate void SendCallbackType();
SendCallbackType senderdel= new SendCallbackType(SendData);
public void StartSend() // This method Could be Called more than 700 times (Thread per Client)
{
senderdel.BeginInvoke(SendCallback,null);
// (or)
Thread t = new Thread(new ThreadStart(ThreadSend));
t.IsBackground = true;
t.Start();
}
//Async Delegate
void SendData()
{
string data = QueData.DeQueue();
RaiseOnData(data); // Raise to event.
}
void SendCallback(IAsyncResult ar)
{
senderdel.BeginInvoke(SendCallback, null);
}
//Thread
void ThreadSend()
{
while (true)
{
string data = QueData.DeQueue();
RaiseOnData(data); // Raise to event.
}
}
从上面哪个选项是最好的。表现 ?