Interface IThreadExecutor

  • All Known Implementing Classes:
    DaemonThreadExecutor

    public interface IThreadExecutor
    Interface for executing tasks on parallel threads.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void run​(java.lang.Runnable task)
      Starts executing the task on a separate thread.
    • Method Detail

      • run

        void run​(java.lang.Runnable task)
        Starts executing the task on a separate thread.
        Parameters:
        task - The task.