Function that can be used to execute code on a Thread Pool. This is useful whenever someone needs to run a task in a
different thread than the current one (for example the JavaFx one), without creating a new thread every time.
The chosen executor for multi threading is ideal for many short tasks.
Linear Supertypes
AnyRef, Any
Ordering
Alphabetic
By Inheritance
Inherited
RunOnExecutor
AnyRef
Any
Hide All
Show All
Visibility
Public
All
Value Members
final def!=(arg0: Any): Boolean
Definition Classes
AnyRef → Any
final def##(): Int
Definition Classes
AnyRef → Any
final def==(arg0: Any): Boolean
Definition Classes
AnyRef → Any
defapply[R](operation: ⇒ R, singleThreaded: Boolean = false): Unit
Function that can be used to execute code on a Thread Pool. This is useful whenever someone needs to run a task in a different thread than the current one (for example the JavaFx one), without creating a new thread every time. The chosen executor for multi threading is ideal for many short tasks.