我有这个异步请求:
Pubnub pn = new Pubnub(publishKey, subscribeKey, secretKey, cipherKey, enableSSL);
pn.HereNow("testchannel", res => //doesn't return a Task
{ //response
}, err =>
{ //error response
});
问题是我不知道如何同步运行它。请帮忙。
最佳答案
我对pubnub并不熟悉,但是您要实现的目标应该像这样简单:
Pubnub pn = new Pubnub(publishKey, subscribeKey, secretKey, cipherKey, enableSSL);
var tcs = new TaskCompletionSource<PubnubResult>();
pn.HereNow("testchannel", res => //doesn't return a Task
{ //response
tcs.SetResult(res);
}, err =>
{ //error response
tcs.SetException(err);
});
// blocking wait here for the result or an error
var res = tcs.Task.Result;
// or: var res = tcs.Task.GetAwaiter().GetResult();
请注意,不建议同步执行异步操作。您应该查看使用
async/await
,在这种情况下,您应该这样做:var result = await tcs.Task;
关于c# - Pubnub执行同步请求,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/28486898/