Packages

c

monix.eval.Task

Options

final case class Options(autoCancelableRunLoops: Boolean) extends Product with Serializable

Set of options for customizing the task's behavior.

autoCancelableRunLoops

should be set to true in case you want flatMap driven loops to be auto-cancelable. Defaults to false.

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

Instance Constructors

  1. new Options(autoCancelableRunLoops: Boolean)

    autoCancelableRunLoops

    should be set to true in case you want flatMap driven loops to be auto-cancelable. Defaults to false.

Value Members

  1. val autoCancelableRunLoops: Boolean
  2. def disableAutoCancelableRunLoops: Options

    Creates a new set of options from the source, but with the autoCancelableRunLoops value set to false.

  3. def enableAutoCancelableRunLoops: Options

    Creates a new set of options from the source, but with the autoCancelableRunLoops value set to true.