Home | History | Annotate | Download | only in app

Lines Matching defs:IntentService

28  * IntentService is a base class for {@link Service}s that handle asynchronous
35 * from an application's main thread. The IntentService class exists to
37 * IntentService and implement {@link #onHandleIntent(Intent)}. IntentService
53 public abstract class IntentService extends Service {
72 * Creates an IntentService. Invoked by your subclass's constructor.
76 public IntentService(String name) {
108 HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
124 * You should not override this method for your IntentService. Instead,
125 * override {@link #onHandleIntent}, which the system calls when the IntentService
155 * the same IntentService, but it will not hold up anything else.
156 * When all requests have been handled, the IntentService stops itself,