object EndpointIO
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- EndpointIO
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Type Members
- sealed trait Basic[I] extends Single[I] with EndpointInput.Basic[I] with EndpointOutput.Basic[I]
- case class Body[T, CF <: CodecFormat, R](codec: CodecForOptional[T, CF, R], info: Info[T]) extends Basic[T] with Product with Serializable
- case class FixedHeader(name: String, value: String, info: Info[Unit]) extends Basic[Unit] with Product with Serializable
- case class Header[T](name: String, codec: PlainCodecForMany[T], info: Info[T]) extends Basic[T] with Product with Serializable
- case class Headers(info: Info[Seq[(String, String)]]) extends Basic[Seq[(String, String)]] with Product with Serializable
- case class Info[T](description: Option[String], example: Option[T], deprecated: Boolean) extends Product with Serializable
- case class Mapped[I, T](wrapped: EndpointIO[I], f: (I) ⇒ T, g: (T) ⇒ I) extends Single[T] with Product with Serializable
- case class Multiple[I](ios: Vector[Single[_]]) extends EndpointIO[I] with Product with Serializable
- sealed trait Single[I] extends EndpointIO[I] with EndpointInput.Single[I] with EndpointOutput.Single[I]
- case class StreamBodyWrapper[S, F <: CodecFormat](wrapped: StreamingEndpointIO.Body[S, F]) extends Basic[S] with Product with Serializable
Value Members
- object Info extends Serializable