ZClient

zio.http.ZClient$
See theZClient companion trait
object ZClient

Attributes

Companion:
trait
Graph
Supertypes
class Object
trait Matchable
class Any
Self type
ZClient.type

Members list

Concise view

Type members

Classlikes

final class ClientLive extends Client

Attributes

Graph
Supertypes
class Object
trait Matchable
class Any
Self type
case class Config(ssl: Option[ClientSSLConfig], proxy: Option[Proxy], connectionPool: ConnectionPoolConfig, maxHeaderSize: Int, requestDecompression: Decompression, localAddress: Option[InetSocketAddress], addUserAgentHeader: Boolean, webSocketConfig: WebSocketConfig, idleTimeout: Option[Duration], connectionTimeout: Option[Duration])

Attributes

Companion:
object
Graph
Supertypes
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any
Self type
object Config

Attributes

Companion:
class
Graph
Supertypes
trait Product
trait Mirror
class Object
trait Matchable
class Any
Self type
Config.type

Value members

Concrete methods

def delete(pathSuffix: String, body: Body)(implicit trace: Trace): ZIO[Client, Throwable, Response]
def delete(pathSuffix: String)(implicit trace: Trace): ZIO[Client, Throwable, Response]
def delete(implicit trace: Trace): ZIO[Client, Throwable, Response]
def get(pathSuffix: String, body: Body)(implicit trace: Trace): ZIO[Client, Throwable, Response]
def get(pathSuffix: String)(implicit trace: Trace): ZIO[Client, Throwable, Response]
def get(implicit trace: Trace): ZIO[Client, Throwable, Response]
def head(pathSuffix: String, body: Body)(implicit trace: Trace): ZIO[Client, Throwable, Response]
def head(pathSuffix: String)(implicit trace: Trace): ZIO[Client, Throwable, Response]
def head(implicit trace: Trace): ZIO[Client, Throwable, Response]
def patch(pathSuffix: String, body: Body)(implicit trace: Trace): ZIO[Client, Throwable, Response]
def post(pathSuffix: String, body: Body)(implicit trace: Trace): ZIO[Client, Throwable, Response]
def put(pathSuffix: String, body: Body)(implicit trace: Trace): ZIO[Client, Throwable, Response]
def request(url: String, method: Method, headers: Headers, content: Body)(implicit trace: Trace): ZIO[Client, Throwable, Response]
def request(request: Request)(implicit trace: Trace): ZIO[Client, Throwable, Response]
def socket[R](version: Version, url: URL, headers: Headers, app: SocketApp[R])(implicit trace: Trace): ZIO[R & Client & Scope, Throwable, Response]