...
/Converting a Webflux Request Into an RSocket Fire-And-Forget
Converting a Webflux Request Into an RSocket Fire-And-Forget
Learn how to forward a new item over RSocket using fire-and-forget and then test those interactions.
We'll cover the following...
We'll cover the following...
Forwarding item using fire-and-forget
If we take a look at the following flow, we can see how to use RSocket’s fire-and-forget paradigm:
Forwarding a new Item over an RSocket using fire-and-forget
Here’s a breakdown of the code above:
-
In line 5, the example forwards the incoming request to the destination
newItems.fire-and-forget. -
Line 7 uses
RSocketRequestor.send()...