Packages

sealed trait EndpointMiddleware extends AnyRef

A description of endpoint middleware, in terms of what the middleware requires from the request, and what it appends to the response.

Self Type
EndpointMiddleware
Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. EndpointMiddleware
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. abstract type Err
  2. abstract type In
  3. abstract type Out

Abstract Value Members

  1. abstract def doc: Doc
  2. abstract def error: HttpCodec[ResponseType, Err]
  3. abstract def input: HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, In]
  4. abstract def output: HttpCodec[codec.HttpCodecType.Header, Out]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def ++(that: EndpointMiddleware)(implicit inCombiner: Combiner[In, In], outCombiner: Combiner[Out, Out], errAlternator: Alternator[Err, Err]): Typed[codec.Combiner.Out, codec.Alternator.Out, codec.Combiner.Out]
  4. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  5. def ??(doc: Doc): Typed[In, Err, Out]
  6. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  7. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @IntrinsicCandidate()
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  11. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @IntrinsicCandidate()
  12. def implement[R, S](incoming: (In) => ZIO[R, Err, S])(outgoing: (S) => ZIO[R, Err, Out])(implicit trace: Trace): HandlerAspect[R, S]
  13. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  14. def mapBoth[MiddlewareIn2, MiddlewareOut2](f: (HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, In]) => HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, MiddlewareIn2], g: (HttpCodec[codec.HttpCodecType.Header, Out]) => HttpCodec[codec.HttpCodecType.Header, MiddlewareOut2]): Typed[MiddlewareIn2, Err, MiddlewareOut2]
  15. def mapIn[MiddlewareIn2](f: (HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, In]) => HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, MiddlewareIn2]): Typed[MiddlewareIn2, Err, Out]
  16. def mapOut[MiddlewareOut2](f: (HttpCodec[codec.HttpCodecType.Header, Out]) => HttpCodec[codec.HttpCodecType.Header, MiddlewareOut2]): Typed[In, Err, MiddlewareOut2]
  17. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @IntrinsicCandidate()
  20. def optional: Typed[Option[In], Err, Option[Out]]
  21. def optionalIn: Typed[Option[In], Err, Out]
  22. def optionalOut: Typed[In, Err, Option[Out]]
  23. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  24. def toString(): String
    Definition Classes
    AnyRef → Any
  25. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  26. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  27. 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 AnyRef

Inherited from Any

Ungrouped