RxPaper2 icon indicating copy to clipboard operation
RxPaper2 copied to clipboard

Maybe wrong documentation.

Open armintelker opened this issue 7 years ago • 3 comments

The current version of Completable.subscribe don't take anymore Completable.CompletableSubscriber() you could use CompletableObserver

armintelker avatar Jun 29 '17 09:06 armintelker

 write.subscribe(new CompletableObserver() {
            @Override
            public void onSubscribe(Disposable disposable) {

            }

            @Override
            public void onComplete() {

            }

            @Override
            public void onError(Throwable throwable) {

            }
        });

armintelker avatar Jun 29 '17 09:06 armintelker

Any PR to the docs to fix it would be fine. It's not a big issue :D

pakoito avatar Jan 21 '18 20:01 pakoito

#10 resolved this issue

kishandonga avatar Jun 28 '20 12:06 kishandonga