sttp.client4.asynchttpclient.AsyncHttpClientBackend
See theAsyncHttpClientBackend companion object abstract class AsyncHttpClientBackend [F [_ ], S <: Streams [S ], P ](asyncHttpClient : AsyncHttpClient , val monad : MonadAsyncError [F ], closeClient : Boolean , customizeRequest : BoundRequestBuilder => BoundRequestBuilder ) extends GenericBackend [F , P ] with Backend [F ]
Attributes Companion: object Graph Reset zoom Hide graph Show graph
Supertypes trait Backend [F ]
trait GenericBackend [F , P ]
class Object
trait Matchable
class Any
Members list Concise view
Value members
Close the backend, releasing any resources (such as thread or connection pools) that have been allocated when
opening or using the backend.
Close the backend, releasing any resources (such as thread or connection pools) that have been allocated when
opening or using the backend.
Attributes Definition Classes GenericBackend
Send the given request. Should only be used when implementing new backends, or backend wrappers. Client code
should instead use the send
methods on the request type, e.g. Request.send .
Send the given request. Should only be used when implementing new backends, or backend wrappers. Client code
should instead use the send
methods on the request type, e.g. Request.send .
Attributes Definition Classes GenericBackend
Implicits
A monad instance for the F
effect type. Allows writing wrapper backends, which map
/`flatMap`` over the return
value of send .
A monad instance for the F
effect type. Allows writing wrapper backends, which map
/`flatMap`` over the return
value of send .
Attributes