I was expecting flatMapCompletable will call the given Action when Completable completes normally. However, it does not work as I thought. Here's a simple example:
PublishProcessor<String> processor = PublishProcessor.create();
processor.flatMapCompletable(s2 -> {
System.out.println("s2 " + s2);
return Completable.complete();
}).subscribe(() -> {
System.out.println("done"); // it does not come here
});
Is this expected behavior? If so, How can I check if Completable task is finished? Completable.complete().doFinally()
?
You need to call
processor.onComplete();
in order to get Action onComplete. This is because you are still subscribed to subject while it listens for incoming events.Flowable
completes normally