I have a service class and inside a service class I have timer task class.
Can I pass an Intent from my service class to other class which is in the service Reason - I need to use alarm manager just to fire timer task class from service, I want my service always to be running
public class TestService extends Service
{
// I need to pass an intent to trigger alarm from TestService to timeTaskUpdate
private class timeTaskUpdate extends TimerTask{ }
}