Packages

o

monix.execution.ExecutionModel

AlwaysAsyncExecution

object AlwaysAsyncExecution extends ExecutionModel with Product with Serializable

ExecutionModel that specifies a run-loop should always do async execution of tasks, forking logical threads on each step.

Source
ExecutionModel.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. AlwaysAsyncExecution
  2. ExecutionModel
  3. Serializable
  4. Product
  5. Equals
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Value Members

  1. val batchedExecutionModulus: Int

    Always equal to recommendedBatchSize-1.

    Always equal to recommendedBatchSize-1.

    Provided for convenience.

    Definition Classes
    AlwaysAsyncExecutionExecutionModel
  2. def nextFrameIndex(current: Int): Int

    Returns the next frame index in the run-loop.

    Returns the next frame index in the run-loop.

    For AlwaysAsyncExecution this function always returns zero, signaling that the next cycle in the run-loop should always be async.

    Definition Classes
    AlwaysAsyncExecutionExecutionModel
  3. def productElementName(n: Int): String
    Definition Classes
    Product
  4. def productElementNames: Iterator[String]
    Definition Classes
    Product
  5. val recommendedBatchSize: Int

    The ExecutionModel.recommendedBatchSize for the SynchronousExecution type is set to one.