p
Package exposing the Monix integration with the Cats library.
Package exposing the Monix integration with the Cats library.
See the library's documentation at: typelevel.org/cats/
To convert Monix type-class instances into Cats types:
import monix.cats._
To convert Cats type-class instances into Monix types:
import monix.cats.reverse._
Do not bring these imports into the same scope as you can experience conflicts if you do:
// Do not do this! import monix.cats._ import monix.cats.reverse._
Package exposing the Monix integration with the Scalaz library.
Package exposing the Monix integration with the Scalaz library.
See the library's documentation at scalaz.org.
To convert Monix type-class instances into Scalaz types:
import monix.scalaz._
To convert Scalaz type-class instances into Monix types:
import monix.scalaz.reverse._
Do not bring these imports into the same scope as you can experience conflicts if you do:
// Do not do this! import monix.scalaz._ import monix.scalaz.reverse._
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.eval is for dealing with evaluation of results, thus exposing Task and Coeval.
monix.reactive exposes the
Observable
pattern:Observable
implementationsmonix.types implements type-class shims, to be translated to type-classes provided by libraries such as Cats or Scalaz.
monix.cats is the optional integration with the Cats library, providing translations for the types described in
monix.types
.monix.scalaz is the optional integration with the Scalaz library, providing translations for the types described in
monix.types
.