反应式扩展等待方法完成
我们开始使用一些反应式扩展来重构我们的 silverlight 应用程序。我有一个可以完成一些工作的初始化方法。我对 Initialize 方法中的一个方法进行了调用,该调用必须在调用 Initialize 方法的其余部分之前完成。
LoadTaskQueues(_currentUser.InstitutionID);
if (_params.Task != null)
{
LoadTaskInformation(_params.Task);
return null;
}
我需要在运行 LoadTaskInformation 之前完成 LoadTaskQueues。
We are starting to refactor our silverlight application using some reactive extensions. I have an Initialize method that does some work. I have a call to a method within the Initialize method that must be completed before the rest of the Initialize method is called.
LoadTaskQueues(_currentUser.InstitutionID);
if (_params.Task != null)
{
LoadTaskInformation(_params.Task);
return null;
}
I need to have LoadTaskQueues completed before it runs the LoadTaskInformation.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
假设LoadTaskQueues返回IObservable(你没有指定),你想在这里订阅:
Assuming that LoadTaskQueues returns IObservable (you don't specify), you want to Subscribe here: