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
- Alphabetic
- By Inheritance
Inherited
- EndpointMiddleware
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Abstract Value Members
- abstract def doc: Doc
- abstract def error: HttpCodec[ResponseType, Err]
- abstract def input: HttpCodec[codec.HttpCodecType.Header with Query with codec.HttpCodecType.Method, In]
- abstract def output: HttpCodec[codec.HttpCodecType.Header, Out]
Concrete Value Members
-
final
def
!=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
##(): Int
- Definition Classes
- AnyRef → Any
- 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]
-
final
def
==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def ??(doc: Doc): Typed[In, Err, Out]
-
final
def
asInstanceOf[T0]: T0
- Definition Classes
- Any
-
def
clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native() @IntrinsicCandidate()
-
final
def
eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
def
equals(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
-
final
def
getClass(): Class[_]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
-
def
hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @IntrinsicCandidate()
- def implement[R, S](incoming: (In) ⇒ ZIO[R, Err, S])(outgoing: (S) ⇒ ZIO[R, Err, Out])(implicit trace: Trace): HandlerAspect[R, S]
-
final
def
isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- 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]
- 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]
- def mapOut[MiddlewareOut2](f: (HttpCodec[codec.HttpCodecType.Header, Out]) ⇒ HttpCodec[codec.HttpCodecType.Header, MiddlewareOut2]): Typed[In, Err, MiddlewareOut2]
-
final
def
ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
-
final
def
notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
-
final
def
notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @IntrinsicCandidate()
- def optional: Typed[Option[In], Err, Option[Out]]
- def optionalIn: Typed[Option[In], Err, Out]
- def optionalOut: Typed[In, Err, Option[Out]]
-
final
def
synchronized[T0](arg0: ⇒ T0): T0
- Definition Classes
- AnyRef
-
def
toString(): String
- Definition Classes
- AnyRef → Any
-
final
def
wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )
-
final
def
wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... ) @native()
-
final
def
wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws( ... )