我需要我将在链中调用一个可完成的方法,完成后,它需要使用Map
运算符继续执行链
示例
Single.just(someOperation())
.flatMapCompletable{
completableMethod()
}
.map{ // i need to continue here with map or some other operator
doSomeOperation()
}
谁能帮我解决这个问题?