AsyncHttpClientCatsBackend

Companion
class
class Object
trait Matchable
class Any

Value members

Concrete methods

def apply[F[_]](options: SttpBackendOptions, customizeRequest: BoundRequestBuilder => BoundRequestBuilder)(implicit evidence$3: Async[F]): F[SttpBackend[F, Any]]
def resource[F[_]](options: SttpBackendOptions, customizeRequest: BoundRequestBuilder => BoundRequestBuilder)(implicit evidence$4: Async[F]): Resource[F, SttpBackend[F, Any]]

Makes sure the backend is closed after usage.

Makes sure the backend is closed after usage.

def resourceUsingConfig[F[_]](cfg: AsyncHttpClientConfig, customizeRequest: BoundRequestBuilder => BoundRequestBuilder)(implicit evidence$6: Async[F]): Resource[F, SttpBackend[F, Any]]

Makes sure the backend is closed after usage.

Makes sure the backend is closed after usage.

def resourceUsingConfigBuilder[F[_]](updateConfig: Builder => Builder, options: SttpBackendOptions, customizeRequest: BoundRequestBuilder => BoundRequestBuilder)(implicit evidence$8: Async[F]): Resource[F, SttpBackend[F, Any]]

Makes sure the backend is closed after usage.

Makes sure the backend is closed after usage.

Value Params
updateConfig

A function which updates the default configuration (created basing on options).

def stub[F[_]](implicit evidence$10: Async[F]): SttpBackendStub[F, Any]

Create a stub backend for testing, which uses the F response wrapper, and doesn't support streaming.

Create a stub backend for testing, which uses the F response wrapper, and doesn't support streaming.

See SttpBackendStub for details on how to configure stub responses.

def usingClient[F[_]](client: AsyncHttpClient, customizeRequest: BoundRequestBuilder => BoundRequestBuilder)(implicit evidence$9: Async[F]): SttpBackend[F, Any]
def usingConfig[F[_]](cfg: AsyncHttpClientConfig, customizeRequest: BoundRequestBuilder => BoundRequestBuilder)(implicit evidence$5: Async[F]): F[SttpBackend[F, Any]]
def usingConfigBuilder[F[_]](updateConfig: Builder => Builder, options: SttpBackendOptions, customizeRequest: BoundRequestBuilder => BoundRequestBuilder)(implicit evidence$7: Async[F]): F[SttpBackend[F, Any]]
Value Params
updateConfig

A function which updates the default configuration (created basing on options).