如何在Mono,Flux中比较相似的数据

时间:2019-02-21 10:13:44

标签: spring

我是不熟悉Web客户端的新手,并且我有两个请求同时进行,但是我需要比较两个回复数据。有任何想法吗?

1 个答案:

答案 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
});