Interface Runnable


public interface Runnable

Interface that should be implemented by any class whose instances are intended to be executed by a thread.

  • Method Summary

    Modifier and Type
    Method
    Description
    void
    run()
    Method that will be called when this Runnable is executed.
  • Method Details

    • run

      void run()

      Method that will be called when this Runnable is executed.