Known Indirect Subclasses
AnimationDrawable |
An object used to create frame-by-frame animations, defined by a series of Drawable objects,
which can be used as a View object's background. |
CookieSyncManager |
The CookieSyncManager is used to synchronize the browser cookie store
between RAM and permanent storage. |
FutureTask<V> |
A cancellable asynchronous computation. |
HandlerThread |
Handy class for starting a new thread that has a looper. |
RefQueueWorker |
A worker thread for processing queued references. |
Thread |
A Thread is a concurrent unit of execution. |
TimerTask |
The TimerTask class represents a task to run at a specified time. |
|
Class Overview
Represents a command that can be executed. Often used to run code in a
different Thread
.
Summary
Public Methods |
abstract
void
|
run()
Starts executing the active part of the class' code.
|
Public Methods
public
abstract
void
run
()
Starts executing the active part of the class' code. This method is
called when a thread is started that has been created with a class which
implements Runnable
.