Recently google introduced push to device service, but it's only available 2.2 and up.

I need similar system in my app and trying to get around limitations.

The issue is battery life. Since user must be notified immidiately about the changes on the server, I thought to implement a service, that will live in background (standart android service) and query the server for updates.

Of course, asking server, even each second, will cost a lot of bandwidth as well as battery, so my question is, does it make a difference, if server is holding the response for some period of time (the idea behind Comet type ajax request)

Works like this. Device sends request for data update, server gets the request and goes in the loop for one minute, checking if there are updates on each iteration, if there are, server sends response with updates back, if no, it goes on to the next iteration. After a minute, it finally sends response, that no data is yet available. After response (no matter empty, or with data) android fires another such request.

It definetely will cost less bandwidth, but will it consume less (or even more) battery?

link|improve this question

58% accept rate
feedback

2 Answers

up vote 2 down vote accepted

Holding a TCP socket (and consequently waiting for an HTTP response) as you suggest is probably going to be your best option. What you've described is actually already implemented via HTTP continuation requests. Have a look at the Bayeux protocol for HTTP push notifications. Also, check out the Android implementation here. For what it's worth, that's definitely what I would use. I haven't done any sort of analysis of it, but this allows you to minimize the amount of data transmitted over the line (which is directly proportional to the power consumption) by allowing the connection to hang for as long as possible.

In short, the way Bayeux works is very similar to what you've suggested. The client opens a request and the server waits on it. If it has something to send, it sends it otherwise it simply waits. Eventually, the request will timeout. At that point, the client makes another request. What you attain is near instantaneous push to the client from the server without constant polling and duplication of information like HTTP headers, etc.

link|improve this answer
feedback

When the phone is actively using the networks, it's battery is used more. That is to say when it sends the request and when it receives the response. It will also be using battery just by listening for a response. However, will the phone download data, checking to see if there's a response? Or will the phone just be open to receiving it and the server will push the response out to the phone? That is mainly what it depends on. If the phone is just open to receiving the response but does not actually use the network while trying to download some response the whole time it's waiting, it should use less battery.

Additionally, the phone sending a query every minute instead of every second definitely uses less battery, as far as using the networks goes. However it depends on how you make the phone hold, if you tie it up with very complex logic to make it wait it may not help battery life. That's probably not the case, however, and I would say that in all likelihood this would work out for you.

In closing, it should help the battery but there are ways you could make it in which it would not. It wouldn't hurt to write the program and then just change some type of variable (for example WAIT_TIME to 1 second instead of 1 minute) and test battery usage though, would it?

link|improve this answer
Thank you for response. I thought about writing a sample app, and I will propably do it in the near future. And about request. It's just a simple request, like someserver.com/getdata And after that, the device is waiting for response, if data is available, then it gets response immideately, or in some time (less than a minute), otherwise it just waits, while the main stuff is happening on the server. – Alex Orlov Jan 5 '11 at 15:41
feedback

Your Answer

 
or
required, but never shown

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