Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 32b80b50 authored by Christopher Tate's avatar Christopher Tate
Browse files

Correct IntentService docs

Extends Service, not a base class of it.

Bug: 147564984
Test: build reference docs (m offline-sdk-docs)
Change-Id: Idf0a52d59062be36827e27eea076c744152a676c
parent ee605b64
Loading
Loading
Loading
Loading
+3 −2
Original line number Diff line number Diff line
@@ -27,8 +27,9 @@ import android.os.Looper;
import android.os.Message;

/**
 * IntentService is a base class for {@link Service}s that handle asynchronous
 * requests (expressed as {@link Intent}s) on demand.  Clients send requests
 * IntentService is an extension of the {@link Service} component class that
 * handles asynchronous requests (expressed as {@link Intent}s) on demand.
 * Clients send requests
 * through {@link android.content.Context#startService(Intent)} calls; the
 * service is started as needed, handles each Intent in turn using a worker
 * thread, and stops itself when it runs out of work.