将AsyncTask转换为RxAndroid

时间:2015-07-23 15:54:50

标签: android android-asynctask rx-java rx-android

我有以下方法使用otto和AsyncTask发布对UI的响应。

private static void onGetLatestStoryCollectionSuccess(final StoryCollection storyCollection, final Bus bus) {
    new AsyncTask<Void, Void, Void>() {
        @Override
        protected Void doInBackground(Void... params) {
            bus.post(new LatestStoryCollectionResponse(storyCollection));
            return null;
        }
    }.execute();
}

我需要帮助才能使用 RxAndroid库将此AsyncTask转换为RxJava

3 个答案:

答案 0 :(得分:13)

不要使用.create()但请使用.defer()

Observable<File> observable = Observable.defer(new Func0<Observable<File>>() {
  @Override public Observable<File> call() {

    File file = downloadFile();

    return Observable.just(file);
  }
});

了解更多详情,请参阅https://speakerdeck.com/dlew/common-rxjava-mistakes

答案 1 :(得分:11)

这是使用RxJava

的文件下载任务的示例
Observable<File> downloadFileObservable() {
    return Observable.create(new OnSubscribeFunc<File>() {
        @Override
        public Subscription onSubscribe(Observer<? super File> fileObserver) {
            try {
                byte[] fileContent = downloadFile();
                File file = writeToFile(fileContent);
                fileObserver.onNext(file);
                fileObserver.onCompleted();
            } catch (Exception e) {
                fileObserver.onError(e);
            }
            return Subscriptions.empty();
        }
    });
}

用法:

downloadFileObservable()
  .subscribeOn(Schedulers.newThread())
  .observeOn(AndroidSchedulers.mainThread())
  .subscribe(observer); // you can post your event to Otto here

这将在新线程上下载文件,并在主线程上通知您。

OnSubscribeFunc已被弃用。已更新代码以使用OnSubscribe insted。有关详细信息,请参阅issue 802 on Github.

Code from here.

答案 2 :(得分:6)

在您的情况下,您可以使用fromCallable。减少代码和自动onError排放。

Observable<File> observable = Observable.fromCallable(new Callable<File>() {
        @Override
        public File call() throws Exception {
            File file = downloadFile();
            return file;
        }
    });

使用lambdas:

Observable<File> observable = Observable.fromCallable(() -> downloadFile());