私は、rxjava2 スタブを使用して grpc でメッセンジャー サーバーを作成しています。
私はある種のことを試しました
val user:Single<User> = getUser()
val conversation:Single<Conversation> = getConversation(user.blockingGet())
return conversation.map{
someMethod(user.blockingGet(), conversation.it())
it
}
すべての例よりも見栄えが悪いので、このすべてのシングルを 1 つの行にまとめる方法はありますか?