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

/frameworks/base/core/java/android/app/
H A DIntentService.java29 * IntentService is a base class for {@link Service}s that handle asynchronous
36 * from an application's main thread. The IntentService class exists to
38 * IntentService and implement {@link #onHandleIntent(Intent)}. IntentService
46 * <p class="note"><b>Note:</b> IntentService is subject to all the
63 public abstract class IntentService extends Service { class in inherits:Service
82 * Creates an IntentService. Invoked by your subclass's constructor.
86 public IntentService(String name) { method in class:IntentService
118 HandlerThread thread = new HandlerThread("IntentService[" + mName + "]");
134 * You should not override this method for your IntentService
[all...]

Completed in 40 milliseconds