package exceptions
- Alphabetic
- Public
- All
Type Members
-
class
BufferOverflowException
extends execution.exceptions.BufferOverflowException
An exception emitted on buffer overflow, like when using OverflowStrategy.Fail.
An exception emitted on buffer overflow, like when using OverflowStrategy.Fail.
- Annotations
- @deprecated
- Deprecated
(Since version 2.2.2) Moved to monix.execution.exceptions.BufferOverflowException
-
class
CompositeException
extends execution.exceptions.CompositeException with Product
A composite exception represents a list of exceptions that were caught while delaying errors in the processing of observables.
A composite exception represents a list of exceptions that were caught while delaying errors in the processing of observables.
Used in operators such as
mergeDelayErrors
,concatDelayError
,combineLatestDelayError
, etc...- Annotations
- @deprecated
- Deprecated
(Since version 2.2.2) Moved to monix.execution.CompositeException
-
class
DownstreamTimeoutException
extends execution.exceptions.DownstreamTimeoutException with Product
Moved to monix.execution.exceptions.DownstreamTimeoutException.
- Annotations
- @deprecated
- Deprecated
(Since version 2.2.2) Moved to monix.execution.exceptions.DownstreamTimeoutException
-
class
MultipleSubscribersException
extends APIContractViolationException with Serializable with Product
- Annotations
- @deprecated
- Deprecated
(Since version 2.2.2) Use monix.execution.exceptions.APIContractViolationException
-
class
UpstreamTimeoutException
extends execution.exceptions.UpstreamTimeoutException with Product
- Annotations
- @deprecated
- Deprecated
(Since version 2.2.2) Moved to monix.execution.UpstreamTimeoutException
Value Members
- object CompositeException extends AbstractFunction1[Seq[Throwable], CompositeException] with Serializable
-
object
DownstreamTimeoutException
extends AbstractFunction1[FiniteDuration, DownstreamTimeoutException] with Serializable
Moved to monix.execution.exceptions.DownstreamTimeoutException.
- object MultipleSubscribersException extends AbstractFunction1[String, MultipleSubscribersException] with Serializable
- object UpstreamTimeoutException extends AbstractFunction1[FiniteDuration, UpstreamTimeoutException] with Serializable
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
.