Packages

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
  1. Alphabetic
  2. By Inheritance
Inherited
  1. CookieJar
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Value Members

  1. def apply[F[_]](alg: CookieJar[F])(client: Client[F])(implicit arg0: Async[F]): Client[F]

    Middleware Constructor Using a Provided CookieJar.

  2. 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.

  3. 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.

  4. def jarImpl[F[_]](implicit arg0: Async[F]): F[CookieJar[F]]

    Jar Constructor

  5. 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.