You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class MonoEmptyExample {
public static void main(String[] args) {
Mono<String> emptyMono = Mono.empty();
emptyMono.subscribe(
value -> System.out.println("This will not be printed"),
error -> System.err.println("This will not be printed either"),
() -> System.out.println("Completed without emitting any item")
);
}
}
The text was updated successfully, but these errors were encountered:
Fix reactor-plugin empty mono and flux
Avoid tracking MonoEmpty objects.
The text was updated successfully, but these errors were encountered: