final case class HandledEndpoint[-R, +E, In0, Out0, Id](endpointSpec: EndpointSpec[In0, Out0], handler: (In0) => ZIO[R, E, Out0]) extends Endpoints[R, E, Id] with Product with Serializable
- Self Type
- HandledEndpoint[R, E, In0, Out0, Id]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- HandledEndpoint
- Serializable
- Product
- Equals
- Endpoints
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
- new HandledEndpoint(endpointSpec: EndpointSpec[In0, Out0], handler: (In0) => ZIO[R, E, Out0])
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def ++[R1 <: R, E1 >: E, AllIds2](that: Endpoints[R1, E1, AllIds2]): Endpoints[R1, E1, Id with 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.
- Definition Classes
- Endpoints
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- val endpointSpec: EndpointSpec[In0, Out0]
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def flatten: Iterable[HandledEndpoint[R, E, _, _, Id]]
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- val handler: (In0) => ZIO[R, E, Out0]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toHttpApp(implicit trace: Trace): App[R]
- Definition Classes
- 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.
- Definition Classes
- Endpoints
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])