Interface Executor

  • All Known Implementing Classes:
    WebSocketSettings.SameThreadExecutor

    public interface Executor
    An abstraction over all available executor services. The application may use Executor or Akka/Scala 2.10 ExecutionContext, or anything that serves the same purpose.
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      void run​(java.lang.Runnable command)
      Runs a simple task that doesn't return a result
    • Method Detail

      • run

        void run​(java.lang.Runnable command)
        Runs a simple task that doesn't return a result
        See Also:
        Thread.run()