Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've heard that GCM provides less energy consumption.How does GCM provide higher battery life exactly? What is the difference with GCM?

It is said that server sends a message to app when there is something to get.So app doesnt have to check the server everytime.

But now, app is still have to check for that message?

share|improve this question
A valid counterquestion would be - less energy consumption that what? Than C2DM? Than homegrown push notification technology? Than polling (duh)? Please clarify the question for posterity's sake. – Seva Alekseyev Aug 25 '12 at 20:46

1 Answer

up vote 4 down vote accepted

The way it works is that without GCM, your app would either have to have a socket open to your server and ping it every 5 minutes or so in order to keep the socket alive.. Another option would be to make an HTTP call to your server every 5 minutes or so to see if there's anything new to fetch..

With GCM, there's one unified process that's already running to get messages. Now your app just subscribes with a broadcast listener, then if on that GCM process there's ever a message for your app, it would be broadcasted to your app, and at that stage you can whatever you want.

This conserves battery because you are just piggybacking on the already existing GCM service on the OS instead of running your own, thus using less battery.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.