Package

sttp

monad

Permalink

package monad

Visibility
  1. Public
  2. All

Type Members

  1. case class Canceler(cancel: () ⇒ Unit) extends Product with Serializable

    Permalink
  2. class FutureMonad extends MonadAsyncError[Future]

    Permalink
  3. trait MonadAsyncError[F[_]] extends MonadError[F]

    Permalink
  4. trait MonadError[F[_]] extends AnyRef

    Permalink

    A basic monad interface, allowing abstract manipulation of effectful values, represented using the type constructor F.

    A basic monad interface, allowing abstract manipulation of effectful values, represented using the type constructor F.

    A computation yielding results of type T is represented as a value of type F[T]. Such values: * can be transformed using map * can be run in sequence using flatMap * errors can be handled using handleError * and new computations can be created using unit, eval and suspend

    To use convenient .map, .flatMap syntax, make sure an implicit instance of MonadError is in scope, and import: import sttp.monad.syntax._. This adds the appropriate extension methods.

Value Members

  1. object EitherMonad extends MonadError[[β$0$]Either[Throwable, β$0$]]

    Permalink
  2. object TryMonad extends MonadError[Try]

    Permalink
  3. object syntax

    Permalink

Ungrouped