object Cancelable extends Serializable
- Source
- Cancelable.scala
- Alphabetic
- By Inheritance
- Cancelable
- Serializable
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Type Members
Value Members
- def apply(callback: () => Unit): Cancelable
Builds a Cancelable that executes the given
callback
when calling cancel. - def apply(): Cancelable
Builds a Cancelable.
- def cancelAll(seq: Iterable[Cancelable]): Unit
Given a collection of cancelables, cancel them all.
Given a collection of cancelables, cancel them all.
This function collects non-fatal exceptions and throws them all at the end as a composite, in a platform specific way:
- for the JVM "Suppressed Exceptions" are used
- for JS they are wrapped in a
CompositeException
- def collection(seq: Iterable[Cancelable]): Cancelable
Builds a Cancelable reference from a sequence, cancelling everything on
cancel
. - def collection(refs: Cancelable*): Cancelable
Builds a Cancelable reference from a sequence, cancelling everything on
cancel
. - val empty: Cancelable
Returns a dummy Cancelable that doesn't do anything.
- def fromPromise[A](p: Promise[A], e: Throwable): Cancelable
Builds a Cancelable out of a Scala
Promise
, completing the promise with the givenThrowable
on cancel. - def trampolined(seq: Iterable[Cancelable])(implicit s: Scheduler): Cancelable
Wraps a collection of cancelable references into a
Cancelable
that will cancel them all by triggering a trampolined async boundary first, in order to prevent stack overflows. - def trampolined(refs: Cancelable*)(implicit s: Scheduler): Cancelable
Wraps a collection of cancelable references into a
Cancelable
that will cancel them all by triggering a trampolined async boundary first, in order to prevent stack overflows.
This is the API documentation for the Monix library.
Package Overview
monix.execution exposes lower level primitives for dealing with asynchronous execution:
Atomic
types, as alternative tojava.util.concurrent.atomic
monix.catnap exposes pure abstractions built on top of the Cats-Effect type classes:
monix.eval is for dealing with evaluation of results, thus exposing Task and Coeval.
monix.reactive exposes the
Observable
pattern:Observable
implementationsmonix.tail exposes Iterant for purely functional pull based streaming:
Batch
andBatchCursor
, the alternatives to Scala'sIterable
andIterator
respectively that we are using within Iterant's encodingYou can control evaluation with type you choose - be it Task, Coeval, cats.effect.IO or your own as long as you provide correct cats-effect or cats typeclass instance.