object AsyncBuilder extends AsyncBuilder0
- Source
- Task.scala
- Alphabetic
- By Inheritance
- AsyncBuilder
- AsyncBuilder0
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Value Members
- def apply[CancelationToken](implicit ref: AsyncBuilder[CancelationToken]): AsyncBuilder[CancelationToken]
Returns the implicit
AsyncBuilderavailable in scope for the givenCancelTokentype. - implicit def forCancelable[T <: Cancelable]: AsyncBuilder[T]
Implicit
AsyncBuilderfor cancelable tasks, using Cancelable values for specifying cancelation actions.Implicit
AsyncBuilderfor cancelable tasks, using Cancelable values for specifying cancelation actions.- Definition Classes
- AsyncBuilder0
- implicit def forCancelableDummy[T <: Empty]: AsyncBuilder[T]
Implicit
AsyncBuilderfor non-cancelable tasks built by a function returning a Cancelable.Empty.Implicit
AsyncBuilderfor non-cancelable tasks built by a function returning a Cancelable.Empty.This is a case of applying a compile-time optimization trick, completely ignoring the provided cancelable value, since we've got a guarantee that it doesn't do anything.
- implicit val forCoeval: AsyncBuilder[Coeval[Unit]]
Implicit
AsyncBuilderfor cancelable tasks, using Coeval values for specifying cancelation actions. - implicit val forIO: AsyncBuilder[IO[Unit]]
Implicit
AsyncBuilderfor cancelable tasks, usingcats.effect.IOvalues for specifying cancelation actions, see Cats Effect. - implicit val forTask: AsyncBuilder[Task[Unit]]
Implicit
AsyncBuilderfor cancelable tasks, using Task values for specifying cancelation actions. - implicit val forUnit: AsyncBuilder[Unit]
Implicit
AsyncBuilderfor non-cancelable tasks.

This is the API documentation for the Monix library.
Package Overview
monix.execution exposes lower level primitives for dealing with asynchronous execution:
Atomictypes, as alternative tojava.util.concurrent.atomicmonix.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
Observablepattern:Observableimplementationsmonix.tail exposes Iterant for purely functional pull based streaming:
BatchandBatchCursor, the alternatives to Scala'sIterableandIteratorrespectively 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.