Move `onErrorResume` to individual `sendMessage` `Mono`

This commit is contained in:
Chris Eager 2023-09-06 16:52:08 -05:00 committed by ravi-signal
parent 656326355a
commit a9a2e40fed
1 changed files with 11 additions and 10 deletions

View File

@ -360,7 +360,7 @@ public class WebSocketConnection implements MessageAvailabilityListener, Displac
.limitRate(MESSAGE_PUBLISHER_LIMIT_RATE)
.flatMapSequential(envelope ->
Mono.fromFuture(() -> sendMessage(envelope)
.orTimeout(sendFuturesTimeoutMillis, TimeUnit.MILLISECONDS)))
.orTimeout(sendFuturesTimeoutMillis, TimeUnit.MILLISECONDS))
.onErrorResume(
// let the first error pass through to terminate the subscription
e -> {
@ -372,6 +372,7 @@ public class WebSocketConnection implements MessageAvailabilityListener, Displac
// otherwise just emit nothing
e -> Mono.empty()
)
)
.subscribeOn(messageDeliveryScheduler)
.subscribe(
// no additional consumer of values - it is Flux<Void> by now