Let's say I have a service A and a service B.
A receives requests from clients (via a HTTP interface).
For each request A publishes an event using Reactor Kafka (producer).
Service B consumes those events, using Reactor Kafka (consumer).
In case of pressure over the system, can service B communicate to service A to slow down, and A will react to this by not accepting more requests from clients, till B decides it can continue ?
Is this something that can be achievable using Reactor Project ?