0

我有一个方法是这样的:

Task<MyClass> MyMethodAsync()
{
    SendBluetoothMessageAsync();
    var tcs = new TaskCompletionSource<MyClass>();
    Bluetooth.MessageRecieved += (o, e) => tcs.SetResult(e.SomeProperty);
    //this removes itself afterwards, but boilerplate removed
    return await tcs.Task;
}

不过,对于我的 API,我需要提供一个同步替代方案。因此,我需要一个可以等到发出信号,但可以携带一个物体的物体。AutoResetEvent 几乎符合我的标准,这就是我到目前为止所得到的:

MyClass MyMethodAsync()
{
    SendBluetoothMessage();
    var are = new AutoResetEvent();
    Bluetooth.MessageRecieved += (o, e) => are.Set(); //removes itself too
    return null; //problem: how do I get the result?
}

但是,我需要得到结果。我看不出有办法做到这一点。我想过做一个EventWaitHandle衍生品,但代码隐藏看起来很奇怪,所以我不能相信它。谁能想到一种方法来做到这一点?

4

1 回答 1

1

您可以简单地声明一个局部变量,在回调中设置它,然后返回它。

于 2013-10-15T16:55:00.603 回答