Endpoint

zio.http.endpoint.Endpoint$
See theEndpoint companion class
object Endpoint

Attributes

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

Members list

Concise view

Type members

Classlikes

final case class OutErrors[Input, Err, Output, Middleware <: EndpointMiddleware, Err2](self: Endpoint[Input, Err, Output, Middleware]) extends AnyVal

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
class AnyVal
trait Matchable
class Any

Inherited types

The names of the product elements

The names of the product elements

Attributes

Inherited from:
Mirror

The name of the type

The name of the type

Attributes

Inherited from:
Mirror

Value members

Concrete methods

def delete[Input](path: PathQueryCodec[Input]): Endpoint[Input, ZNothing, ZNothing, None]

Constructs an endpoint for an HTTP DELETE method, whose path is described by the specified path codec.

Constructs an endpoint for an HTTP DELETE method, whose path is described by the specified path codec.

Attributes

def get[Input](path: PathQueryCodec[Input]): Endpoint[Input, ZNothing, ZNothing, None]

Constructs an endpoint for an HTTP GET method, whose path is described by the specified path codec.

Constructs an endpoint for an HTTP GET method, whose path is described by the specified path codec.

Attributes

def head[Input](path: PathQueryCodec[Input]): Endpoint[Input, ZNothing, ZNothing, None]

Constructs an endpoint for an HTTP HEAD method, whose path is described by the specified path codec.

Constructs an endpoint for an HTTP HEAD method, whose path is described by the specified path codec.

Attributes

def options[Input](path: PathQueryCodec[Input]): Endpoint[Input, ZNothing, ZNothing, None]

Constructs an endpoint for an HTTP OPTIONS method, whose path is described by the specified path codec.

Constructs an endpoint for an HTTP OPTIONS method, whose path is described by the specified path codec.

Attributes

def patch[Input](path: PathQueryCodec[Input]): Endpoint[Input, ZNothing, ZNothing, None]

Constructs an endpoint for an HTTP PATCH method, whose path is described by the specified path codec.

Constructs an endpoint for an HTTP PATCH method, whose path is described by the specified path codec.

Attributes

def post[Input](path: PathQueryCodec[Input]): Endpoint[Input, ZNothing, ZNothing, None]

Constructs an endpoint for an HTTP POST method, whose path is described by the specified path codec.

Constructs an endpoint for an HTTP POST method, whose path is described by the specified path codec.

Attributes

def put[Input](path: PathQueryCodec[Input]): Endpoint[Input, ZNothing, ZNothing, None]

Constructs an endpoint for an HTTP PUT method, whose path is described by the specified path codec.

Constructs an endpoint for an HTTP PUT method, whose path is described by the specified path codec.

Attributes

def trace[Input](path: PathQueryCodec[Input]): Endpoint[Input, ZNothing, ZNothing, None]

Constructs an endpoint for an HTTP TRACE method, whose path is described by the specified path codec.

Constructs an endpoint for an HTTP TRACE method, whose path is described by the specified path codec.

Attributes