gpt4 book ai didi

java - Mono/Flux 是否有来自 Stream/Optional API 的 Peek/IfPresent 这样的操作符?

转载 作者:行者123 更新时间:2023-12-04 16:26:53 27 4
gpt4 key购买 nike

正如标题所说,想知道在使用 Mono/Flux 时,是否有任何等效(或类似)的运算符可以从 Java Stream API 中查看和 ifPresent。

最佳答案

Flux#hasElement :

Emit a single boolean true if any of the elements of this Flux sequence is equal to the provided value. The implementation uses short-circuit logic and completes with true if an element matches the value.


Mono<Boolean> ifPresent = Flux.<Ob>just(...)
.hasElement(value); // similar to ifPresent
Flux#doOnNext :

Add behavior (side-effect) triggered when the Flux emits an item.


Flux<Ob> flux = Flux.<Ob>just()
.doOnNext(i -> {}); // similar to peek

关于java - Mono/Flux 是否有来自 Stream/Optional API 的 Peek/IfPresent 这样的操作符?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/62168335/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com