object CookieJar
Cookie Jar Companion Object Contains constructors for client middleware or raw jar creation, as well as the middleware
- Source
- CookieJar.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- CookieJar
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
apply[F[_]](alg: CookieJar[F])(client: Client[F])(implicit arg0: Async[F]): Client[F]
Middleware Constructor Using a Provided CookieJar.
-
def
impl[F[_]](c: Client[F])(implicit arg0: Async[F]): F[Client[F]]
Constructor which builds a non-exposed CookieJar and applies it to the client.
-
def
in[F[_], G[_]](c: Client[F])(implicit arg0: Async[F], arg1: Sync[G]): G[Client[F]]
Like impl except it allows the creation of the middleware in a different HKT than the client is in.
-
def
jarImpl[F[_]](implicit arg0: Async[F]): F[CookieJar[F]]
Jar Constructor
-
def
jarIn[F[_], G[_]](implicit arg0: Async[F], arg1: Sync[G]): G[CookieJar[F]]
Like jarImpl except it allows the creation of the CookieJar in a different HKT than the client is in.