ReactiveCommand 完成时的通知 [英] Notification when ReactiveCommand completes

查看:59
本文介绍了ReactiveCommand 完成时的通知的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用 ReactiveUI ReactiveCommands 来打开和关闭已转换为 observable 的 gRPC 流.

I'm trying to use ReactiveUI ReactiveCommands to switch on and off a gRPC stream that I've converted into an observable.

下面显示的代码在某种程度上起作用 - 连接按钮将导致流连接,然后我开始在订阅的 onNext 处理程序中接收数据.断开连接按钮也会通过取消令牌断开流.

The code shown below works to some extent - the connect button will cause the stream to connect, and I start receiving data in the onNext handler of the subscribe. The disconnect button does also disconnect the stream via the cancellation token.

但是,一旦执行了断开连接命令,我也希望收到通知,以便我可以清除应用程序中的其他一些状态.我知道 ReactiveCommand 的 onCompleted 永远不会被调用,因为在任何时候都可以再次执行,所以我的问题是- 我如何知道流何时关闭?

However, once the disconnect command is executed, I would also like to be notified so I can clear up some other state in the application. I understand that the onCompleted of the ReactiveCommand never gets called, because at any point it could be executed again, so my question is - how can I know when the stream has been switched off?

this.WhenActivated(d =>
{
    d(this.BindCommand(ViewModel, x => x.ConnectCommand, x => x.Connect));
    d(this.BindCommand(ViewModel, x => x.DisconnectCommand, x => x.Disconnect));
});

视图模型

ConnectCommand = ReactiveCommand.CreateFromObservable(
    () => appService.ApplicationStream(request)
        .TakeUntil(DisconnectCommand));
ConnectCommand.Subscribe(
    resp => 
    { 
        _logger.Debug(resp); 
    },
    () => 
    {
        // Ideally I could do something useful here, but https://stackoverflow.com/a/26599880/57215
        _logger.Debug("Never called, ReactiveCommands never OnComplete"); 
    });

ConnectCommand.IsExecuting.Subscribe(x => _logger.Debug($"is executing: {x}"));
ConnectCommand.CanExecute.Subscribe(x => _logger.Debug($"can execute: {x}"));
ConnectCommand.ThrownExceptions.Subscribe(ex =>
    throw new Exception($"Could not get data from server: {ex}"));

DisconnectCommand = ReactiveCommand.Create(
    () => { },
    ConnectCommand.IsExecuting);

服务

public IObservable<ApplicationStreamResponse> ApplicationStream(ApplicationStreamRequest request)
{
    return Observable.Create<ApplicationStreamResponse>(async (observer, token) =>
    {
        try
        {
            using (var call = _client.ApplicationStream(request, cancellationToken: token))
            {

                while (await call.ResponseStream.MoveNext())
                {
                    if (token.IsCancellationRequested) return;
                    observer.OnNext(call.ResponseStream.Current);
                }
                observer.OnCompleted();
            }
        }
        catch (RpcException e)
        {
            if (e.Status.StatusCode == StatusCode.Cancelled)
            {
                _logger.Debug($"Application stream was disconnected: {e.Status.Detail}");
                observer.OnCompleted();
            }
            observer.OnError(e);
        }
    });
}

推荐答案

订阅命令:

d(this.BindCommand(ViewModel, x => x.DisconnectCommand, x => x.Disconnect));
this.ViewModel.DisconnectCommand
    .Subscribe(_ => { /* command finished */});

或者创建一个 bool reative 属性,在 DisconnectCommand 代码的末尾设置为 true,并在视图中检查该值.

Or create a bool reative property, set it to true at the end of the DisconnectCommand code, and check the value in the view.

这篇关于ReactiveCommand 完成时的通知的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆