Reputation: 21
I'm implementing a system where I have an android smart phone that receives data values from a sensor and shall upload this data to a Cloud, where some data processing shall occur and a response is sent back to the smart phone.
I've been reading about Firebase but I'm still confused, will I be able to implement such a behavior for the Cloud through it
What I understood is I can use FCM, but does it allow me to store in a database the messages I received? and does it allow me to write a code to perform operations on the received data before sending a reply to the Smart Phone?
Upvotes: 2
Views: 1697
Reputation: 10175
As far as I know, that's doable, you have two possibilities. Either integrate firebase on your Server or use firebase queue
Also in order to respond to the device, you can either send notifications or use real time database from firebase.
Upvotes: 2