This interface specifies the run() method that is required for use with the Thread class. Any class that implements this interface can provide the "body" of a thread. See Thread for more information.
public abstract interface Runnable { // Public Instance Methods public abstract void run(); }
Thread
Thread()