如何使用rxJava实现一系列连续操作?

时间:2015-02-09 09:59:29

标签: rx-java

我的下载过程包含3个连续操作:preProcessdownloadingpostProcess。每个操作都具有异步性(preProcess调用API,downloading等待下载文件等。 UI必须显示正在执行哪些操作(例如,“准备......”,“下载...”,“解包......”)。 我将整个过程视为Observable,它发出整个操作的当前状态。每个操作也是一个可观察的,它在执行开始时发出他的状态并在执行后完成。

    Observable.OnSubscribe<DownloadStatus>() {
        @Override
        public void call(Subscriber<? super DownloadStatus> subscriber) {
            subscriber.onNext(DownloadStatus.PRE_PROCESS);
            doPreProcess()
                    .subscribe(new Action1<File>() {
                        @Override
                        public void call(File file) {
                            subscriber.onCompleted();
                        }
                    });
        }
    });

    Observable<DownloadStatus> mDonwloadingOperation = Observable.create(new Observable.OnSubscribe<DownloadStatus>() {
        @Override
        public void call(final Subscriber<? super DownloadStatus> subscriber) {
            subscriber.onNext(DownloadStatus.DOWNLOADING);
            doDownloading()
                    .subscribe(new Action1<File>() {
                        @Override
                        public void call(File file) {
                            subscriber.onCompleted();
                        }
                    });
        }
    });

    Observable<DownloadStatus> mPosProcessOperation = Observable.create(new Observable.OnSubscribe<DownloadStatus>() {
        @Override
        public void call(Subscriber<? super DownloadStatus> subscriber) {
            subscriber.onNext(DownloadStatus.POST_PROCESS);
            doPostProcess()
                    .subscribe(new Action1<File>() {
                        @Override
                        public void call(File file) {
                            subscriber.onCompleted();
                        }
                    });
        }
    });

一方面,每个操作都要等到上一个操作完成。另一方面,订户需要接收每个发出的状态(例如,PRE_PROCESS - &gt; DOWNLOADING - &gt; POST_PROCESS - &gt; onComplete)

我不能使用merge,因为每个操作都应该依赖于前一个操作的完成。 我不能使用flatMap因为我不知道如何传播发射状态。我认为Subject可能是解决方案,但我也不知道如何传播发射状态。

如何使用rxJava解决此类问题?感谢任何想法/线索。

1 个答案:

答案 0 :(得分:9)

concat就是您所需要的。一旦前一个已完成,它就会订阅连接的observable。

concatMap也像flatMap一样工作,但连接扁平投影。关于这两者之间的区别,有一个很好的图表here