匿名方法和异步 I/O

发布于 2024-08-15 07:41:50 字数 368 浏览 8 评论 0原文

谁能告诉我,如果我在异步 I/O 中使用匿名方法,是否可能会遇到意外行为?

例如:

Action<Socket> acceptedHandler = DoAccept
SocketAsyncEventArgs e = new SocketAsyncEventArgs();

e.Completed += ((sender, ea) => acceptedHandler(ea.AcceptSocket));

// Server is a Socket
if (!Server.AcceptAsync(e))
    acceptedHandler(e);

这同样适用于 BeginXXX/EndXXX 异步 I/O。

Can anyone tell me if I'm likely to run into unintended behavior if I use anonymous methods with Async I/O?

As an example:

Action<Socket> acceptedHandler = DoAccept
SocketAsyncEventArgs e = new SocketAsyncEventArgs();

e.Completed += ((sender, ea) => acceptedHandler(ea.AcceptSocket));

// Server is a Socket
if (!Server.AcceptAsync(e))
    acceptedHandler(e);

The same applies to BeginXXX/EndXXX async I/O.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

谎言 2024-08-22 07:41:50

从您粘贴的代码片段来看,似乎不会有任何问题。唯一需要担心匿名方法的时候是捕获变量时。

From the code snippet you pasted it doesn't seem like there would be any issue. The only time to worry about anonymous methods is when you are capturing variables.

装纯掩盖桑 2024-08-22 07:41:50

使用匿名方法时无需担心。您的示例实际上是何时使用它们的一个很好的例子。不雅记得正确使用 SocketAsyncEventArgs 类。我希望你的例子是非常人为的。

There is nothing to worry about when using anonymous methods. Your example is actually a good example of when to use them. Indecently remember to properly use the SocketAsyncEventArgs class. I am hoping your example is extremely contrived.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文