final case class MiddlewareSpec[MiddlewareIn, MiddlewareOut](middlewareIn: HttpCodec[Header with Query with Method, MiddlewareIn], middlewareOut: HttpCodec[Header, MiddlewareOut]) extends Product with Serializable
- Self Type
- MiddlewareSpec[MiddlewareIn, MiddlewareOut]
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- MiddlewareSpec
- Serializable
- Product
- Equals
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- Protected
Instance Constructors
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- def ++[MiddlewareIn2, MiddlewareOut2](that: MiddlewareSpec[MiddlewareIn2, MiddlewareOut2])(implicit inCombiner: Combiner[MiddlewareIn, MiddlewareIn2], outCombiner: Combiner[MiddlewareOut, MiddlewareOut2]): MiddlewareSpec[Out, Out]
- 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()
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def implement[R, S](incoming: (MiddlewareIn) => ZIO[R, Nothing, Control[S]]): Interceptor2[S, R, MiddlewareIn, MiddlewareOut]
- def implementIncoming[R](incoming: (MiddlewareIn) => ZIO[R, Nothing, MiddlewareOut]): Middleware[R, MiddlewareIn, MiddlewareOut]
- def implementIncomingControl[R](incoming: (MiddlewareIn) => ZIO[R, Nothing, Control[MiddlewareOut]]): Middleware[R, MiddlewareIn, MiddlewareOut]
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def mapBoth[MiddlewareIn2, MiddlewareOut2](f: (HttpCodec[Header with Query with Method, MiddlewareIn]) => HttpCodec[Header with Query with Method, MiddlewareIn2], g: (HttpCodec[Header, MiddlewareOut]) => HttpCodec[Header, MiddlewareOut2]): MiddlewareSpec[MiddlewareIn2, MiddlewareOut2]
- def mapIn[MiddlewareIn2](f: (HttpCodec[Header with Query with Method, MiddlewareIn]) => HttpCodec[Header with Query with Method, MiddlewareIn2]): MiddlewareSpec[MiddlewareIn2, MiddlewareOut]
- def mapOut[MiddlewareOut2](f: (HttpCodec[Header, MiddlewareOut]) => HttpCodec[Header, MiddlewareOut2]): MiddlewareSpec[MiddlewareIn, MiddlewareOut2]
- val middlewareIn: HttpCodec[Header with Query with Method, MiddlewareIn]
- val middlewareOut: HttpCodec[Header, MiddlewareOut]
- 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 optional: MiddlewareSpec[Option[MiddlewareIn], Option[MiddlewareOut]]
- def optionalIn: MiddlewareSpec[Option[MiddlewareIn], MiddlewareOut]
- def optionalOut: MiddlewareSpec[MiddlewareIn, Option[MiddlewareOut]]
- def productElementNames: Iterator[String]
- Definition Classes
- Product
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- 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])