Hello fellows!
Need some help on something that seems to be pretty simple.
I would like to send a JsonArray, which has grades of students in a course, to a verticle, let's call it receiver.
The receiver iterates through the JsonArray that was sent and calculates the average grade and send a reply to the source so it can print the avarage to the console.
My difficulty is to make this iteration. How do I scan each value of a JsonArray at the destination, make some calculations, and sent back to the source?
I'm doing this in groovy and using eventbus point to point as a parameter.