Team LiB
Previous Section Next Section

Runnablejava.lang

Java 1.0runnable

This interface specifies the run( ) method that is required to use with the Thread class. Any class that implements this interface can provide the body of a thread. See THRead for more information.

public interface Runnable {
// Public Instance Methods
     void run( );  
}

Implementations

THRead, java.util.TimerTask, java.util.concurrent.FutureTask

Passed To

Too many methods to list.

Returned By

javax.net.ssl.SSLEngine.getDelegatedTask( )

    Team LiB
    Previous Section Next Section