I\'m trying to accomplish the following: Return some data as single, execute a completable after. The following code does not compile due to single.andThen(). The actions need t
Use flatMap:
flatMap
single.flatMap(v -> completable.andThen(Single.just(v)))