object Http
- Alphabetic
- By Inheritance
- Http
- AnyRef
- Any
- Hide All
- Show All
- Public
- All
Value Members
-
def
apply[F[_], G[_]](run: (Request[G]) ⇒ F[Response[G]])(implicit F: Monad[F]): Http[F, G]
Lifts a function into an Http kleisli.
Lifts a function into an Http kleisli. The application of
run
is suspended inF
to permit more efficient combination of routes viaSemigroupK
. - def liftF[F[_], G[_]](fr: F[Response[G]]): Http[F, G]
-
def
local[F[_], G[_]](f: (Request[G]) ⇒ Request[G])(fa: Http[F, G])(implicit F: Monad[F]): Http[F, G]
Transforms an Http on its input.
Transforms an Http on its input. The application of the transformed function is suspended in
F
to permit more efficient combination of routes viaSemigroupK
. - def pure[F[_], G[_]](r: Response[G])(implicit arg0: Applicative[F]): Http[F, G]