Interface Executor
-
- All Known Implementing Classes:
WebSocketSettings.SameThreadExecutor
,WebSocketSettings.WebSocketPushMessageExecutor
public interface Executor
An abstraction over all available executor services. The application may useExecutor
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(Runnable command)
Runs a simple task that doesn't return a result
-
-
-
Method Detail
-
run
void run(Runnable command)
Runs a simple task that doesn't return a result- See Also:
Thread.run()
-
-