Concat

zio.http.api.Endpoints$.Concat
final case class Concat[-R, +E, Ids1, Ids2](left: Endpoints[R, E, Ids1], right: Endpoints[R, E, Ids2]) extends Endpoints[R, E, Ids1 & Ids2]

Attributes

Graph
Supertypes
trait Serializable
trait Product
trait Equals
trait Endpoints[R, E, Ids1 & Ids2]
class Object
trait Matchable
class Any

Members list

Concise view

Value members

Inherited methods

def ++[R1 <: R, E1 >: E, AllIds2](that: Endpoints[R1, E1, AllIds2]): Endpoints[R1, E1, AllIds & AllIds2]

Combines this service and the specified service into a single service, which contains all endpoints and their associated handlers.

Combines this service and the specified service into a single service, which contains all endpoints and their associated handlers.

Attributes

Inherited from:
Endpoints

Attributes

Inherited from:
Product

Attributes

Inherited from:
Product
def toHttpApp(implicit trace: Trace): App[R]

Attributes

Inherited from:
Endpoints
def toHttpRoute: HttpApp[R, E]

Converts this service into a zio.http.App, which can then be served via zio.http.Server.serve.

Converts this service into a zio.http.App, which can then be served via zio.http.Server.serve.

Attributes

Inherited from:
Endpoints