package piaf

  1. Overview
  2. Docs
type t
val create : ?config:Config.t -> sw:Eio.Switch.t -> Eio_unix.Stdenv.base -> Uri.t -> (t, [> Error.client ]) result

create ?config uri opens a connection to uri (initially) that can be used to issue multiple requests to the remote endpoint.

A client instance represents a connection to a single remote endpoint, and the remaining functions in this module will issue requests to that endpoint only.

val head : t -> ?headers:(string * string) list -> string -> (Response.t, [> Error.t ]) result
val get : t -> ?headers:(string * string) list -> string -> (Response.t, [> Error.t ]) result
val post : t -> ?headers:(string * string) list -> ?body:Body.t -> string -> (Response.t, [> Error.t ]) result
val put : t -> ?headers:(string * string) list -> ?body:Body.t -> string -> (Response.t, [> Error.t ]) result
val patch : t -> ?headers:(string * string) list -> ?body:Body.t -> string -> (Response.t, [> Error.t ]) result
val delete : t -> ?headers:(string * string) list -> ?body:Body.t -> string -> (Response.t, [> Error.t ]) result
val request : t -> ?headers:(string * string) list -> ?body:Body.t -> meth:Method.t -> string -> (Response.t, [> Error.t ]) result
val send : t -> Request.t -> (Response.t, [> Error.t ]) result
val ws_upgrade : t -> ?headers:(string * string) list -> string -> (Ws.Descriptor.t, [> Error.t ]) result
val shutdown : t -> unit

shutdown t tears down the connection t and frees up all the resources associated with it.

module Oneshot : sig ... end
OCaml

Innovation. Community. Security.