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
AsyncBuilder
available in scope for the givenCancelToken
type. - implicit def forCancelable[T <: Cancelable]: AsyncBuilder[T]
Implicit
AsyncBuilder
for cancelable tasks, using Cancelable values for specifying cancelation actions.Implicit
AsyncBuilder
for cancelable tasks, using Cancelable values for specifying cancelation actions.- Definition Classes
- AsyncBuilder0
- implicit def forCancelableDummy[T <: Empty]: AsyncBuilder[T]
Implicit
AsyncBuilder
for non-cancelable tasks built by a function returning a Cancelable.Empty.Implicit
AsyncBuilder
for 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
AsyncBuilder
for cancelable tasks, using Coeval values for specifying cancelation actions. - implicit val forIO: AsyncBuilder[IO[Unit]]
Implicit
AsyncBuilder
for cancelable tasks, usingcats.effect.IO
values for specifying cancelation actions, see Cats Effect. - implicit val forTask: AsyncBuilder[Task[Unit]]
Implicit
AsyncBuilder
for cancelable tasks, using Task values for specifying cancelation actions. - implicit val forUnit: AsyncBuilder[Unit]
Implicit
AsyncBuilder
for 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:
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.