I am using 3 tools to build my App.
- Third party tool
- Micronaut / Spring boot
- Flutter
Whenever a third party tool sends some data to my Micronaut application, micronaut processes the data and makes some changes as per requirements. Now micronaut will send some data to my frontend application(flutter)
I am very new to Flutter and I know I can get data when I make an API call but my question is that how can micronaut send data to my Flutter App without an API request. I want to send data to my flutter app as soon as micronaut completes processing the data.
This is not specific to micronaut, you can even give me solution for how to do this in spring boot. I just want to know how can I achieve this.
Thanks in advance