Packages

c

zio.http.api.Endpoints

HandledEndpoint

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
  1. Alphabetic
  2. By Inheritance
Inherited
  1. HandledEndpoint
  2. Serializable
  3. Product
  4. Equals
  5. Endpoints
  6. AnyRef
  7. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new HandledEndpoint(endpointSpec: EndpointSpec[In0, Out0], handler: (In0) => ZIO[R, E, Out0])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. 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
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  7. val endpointSpec: EndpointSpec[In0, Out0]
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def flatten: Iterable[HandledEndpoint[R, E, _, _, Id]]
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  11. val handler: (In0) => ZIO[R, E, Out0]
  12. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  14. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def productElementNames: Iterator[String]
    Definition Classes
    Product
  17. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  18. def toHttpApp(implicit trace: Trace): App[R]
    Definition Classes
    Endpoints
  19. 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
  20. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  21. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  22. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from Serializable

Inherited from Product

Inherited from Equals

Inherited from Endpoints[R, E, Id]

Inherited from AnyRef

Inherited from Any

Ungrouped