How to Sleep a thread until callback for asynchronous function is received?(如何让线程休眠,直到收到异步函数的回调?)
问题描述
我有一个函数,只有在从异步函数接收到回调时才需要执行.
I have a function that needs to be executed only when a callback is received from asynchronous function.
喜欢
我调用异步函数 Stop()
之后不久我调用异步函数 Start()
.
I call asynchronous function Stop()
and soon after that I call asynchronous function Start()
.
收到停止回调之前的问题 Start()
被调用,因此我遇到了问题.我也不能分开调用两个函数就像我不能这样做.:
The Issue before Stop CallBack is received Start()
is called and thus I am getting issues. Also I can not separate the calling of two functions Like I can not do this.:
public void SomeFunction()
{
Stop();
}
public void Stop_CallBack(eventargs e)
{
Start();
}
我必须这样做:
public void SomeFunction()
{
Stop();
//Do something;
Start();
}
但在我收到 Stop 回调之前,我的 start() 函数被执行,从而给我带来了问题.
but before I receive Stop call back my start() function is executed thus creating the problems for me.
谁能帮我解决这个问题.
Can anyone help me out how can I solve this issue.
推荐答案
这是你想要使用等待句柄的时候.下面是一个简短的代码示例来展示一种方法:
This is when you want to use wait handles. Here is a short code sample to show one approach:
class AsyncDemo
{
AutoResetEvent stopWaitHandle = new AutoResetEvent(false);
public void SomeFunction()
{
Stop();
stopWaitHandle.WaitOne(); // wait for callback
Start();
}
private void Start()
{
// do something
}
private void Stop()
{
// This task simulates an asynchronous call that will invoke
// Stop_Callback upon completion. In real code you will probably
// have something like this instead:
//
// someObject.DoSomethingAsync("input", Stop_Callback);
//
new Task(() =>
{
Thread.Sleep(500);
Stop_Callback(); // invoke the callback
}).Start();
}
private void Stop_Callback()
{
// signal the wait handle
stopWaitHandle.Set();
}
}
这篇关于如何让线程休眠,直到收到异步函数的回调?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何让线程休眠,直到收到异步函数的回调?


- C#MongoDB使用Builders查找派生对象 2022-09-04
- 如何用自己压缩一个 IEnumerable 2022-01-01
- C# 中多线程网络服务器的模式 2022-01-01
- WebMatrix WebSecurity PasswordSalt 2022-01-01
- 输入按键事件处理程序 2022-01-01
- 在哪里可以找到使用中的C#/XML文档注释的好例子? 2022-01-01
- 带有服务/守护程序应用程序的 Microsoft Graph CSharp SDK 和 OneDrive for Business - 配额方面返回 null 2022-01-01
- MoreLinq maxBy vs LINQ max + where 2022-01-01
- Web Api 中的 Swagger .netcore 3.1,使用 swagger UI 设置日期时间格式 2022-01-01
- 良好实践:如何重用 .csproj 和 .sln 文件来为 CI 创建 2022-01-01