Searched defs:IntentService (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/app/
H A DIntentService.java27 * IntentService is a base class for {@link Service}s that handle asynchronous
34 * from an application's main thread. The IntentService class exists to
36 * IntentService and implement {@link #onHandleIntent(Intent)}. IntentService
52 public abstract class IntentService extends Service { class in inherits:Service
71 * Creates an IntentService. Invoked by your subclass's constructor.
75 public IntentService(String name) { method in class:IntentService
107 HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
123 * You should not override this method for your IntentService. Instead,
124 * override {@link #onHandleIntent}, which the system calls when the IntentService
[all...]

Completed in 38 milliseconds