Packages

t

monix.execution.schedulers

TrampolinedRunnable

trait TrampolinedRunnable extends Runnable

A marker for callbacks that can be batched and executed locally (on the current thread) by means of a trampoline (if the execution context / scheduler allows it).

Idea was taken from the scala.concurrent.Future implementation. Credit should be given where due.

DO NOT use unless you know what you're doing.

Annotations
@FunctionalInterface()
Source
TrampolinedRunnable.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TrampolinedRunnable
  2. Runnable
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Abstract Value Members

  1. abstract def run(): Unit
    Definition Classes
    Runnable