c# – 异步写入套接字线程安全吗?

前端之家收集整理的这篇文章主要介绍了c# – 异步写入套接字线程安全吗?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
考虑Socket.BeginSend()方法.如果两个线程池线程同时调用方法,它们各自的消息是否相互混合,或者套接字类是否保持不发生?

解决方法

我发现一个熟悉的 post on the MSDN forum似乎回答了你的问题.
  1. You can queue multiple BeginSends at the same time. You don’t need to lock

编辑:

更有趣的信息:

如果您在Remark section of the MSDN doc BeginSend()中向下滚动一下,您将发现有趣的使用可能与您相关的回调方法.

[…] If you want the original thread to block after you call the BeginSend method,use the WaitHandle.WaitOne method. […]

原文链接:https://www.f2er.com/csharp/94044.html

猜你在找的C#相关文章