I've to implement a simple application for test purpose with an always running service in background that polls a server every few seconds. I'm aware of GCM but in my case it is impossible to use as I'm in an intranet without Internet connection.
So I need some explanation on which are the best practices: how can I implement the service to do something every few seconds? AlarmManager? Handler?
Thanks!
Here is one method of doing something repeatedly:
Can of course be wrapped in a Service to make it run as long as the service lives.