We have a following code using
Java 17 and quarkus
@Incoming("requests")
@Outgoing("billingdata")
@Blocking
public void process(
String jsonDataReceive) {
LOG.info("Receive JSON ::"+jsonDataReceive);
LOG.info("Quote Request::"+jsonDataReceive);
service.process(jsonDataReceive);
}
However, this code is not able to handle multiple requests(More Data) at the same time and looses the connection with kafka. What will be possible solution