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?