Packages

c

monix.execution.schedulers

TrampolinedRunnable

abstract class TrampolinedRunnable extends Runnable with OnCompleteRunnable

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.

Source
TrampolinedRunnable.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. TrampolinedRunnable
  2. OnCompleteRunnable
  3. Runnable
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new TrampolinedRunnable()

Abstract Value Members

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