我是不熟悉Web客户端的新手,并且我有两个请求同时进行,但是我需要比较两个回复数据。有任何想法吗?
答案 0 :(得分:0)
根据您的评论,我假设您要在zip
上使用某种Mono
运算符。 Reactor具有zipWith
,可通过以下方式使用:
targetApex.zipWith(sourceApex).subscribe(apex-> {
// apex is type of Tuple2 which has getT1 and getT2 methods
int result = apex.getT1().compare(apex.getT2());
// do something with the result
});