FileDocCategorySizeDatePackage
Runnable.javaAPI DocAndroid 1.5 API1267Wed May 06 22:41:04 BST 2009java.lang

Runnable

public interface Runnable
Represents a command that can be executed. Often used to run code in a different {@link Thread}.
since
Android 1.0

Fields Summary
Constructors Summary
Methods Summary
public voidrun()
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 {@code Runnable}.

since
Android 1.0