Packages

trait MuxEndpoints extends algebra.MuxEndpoints

Self Type
MuxEndpoints with EndpointsWithCustomErrors
Source
MuxEndpoints.scala
Linear Supertypes
algebra.MuxEndpoints, algebra.EndpointsWithCustomErrors, Errors, Responses, algebra.StatusCodes, Requests, endpoints4s.SemigroupalSyntax, algebra.Methods, algebra.Urls, endpoints4s.PartialInvariantFunctorSyntax, endpoints4s.InvariantFunctorSyntax, AnyRef, Any
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. MuxEndpoints
  2. MuxEndpoints
  3. EndpointsWithCustomErrors
  4. Errors
  5. Responses
  6. StatusCodes
  7. Requests
  8. SemigroupalSyntax
  9. Methods
  10. Urls
  11. PartialInvariantFunctorSyntax
  12. InvariantFunctorSyntax
  13. AnyRef
  14. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final class CallbackDocs extends Serializable
    Definition Classes
    EndpointsWithCustomErrors
  2. type CallbacksDocs = Map[String, (MuxEndpoints.this)#CallbackDocs]
    Definition Classes
    EndpointsWithCustomErrors
  3. abstract type ClientErrors
    Definition Classes
    Errors
  4. abstract type Endpoint[A, B]
    Definition Classes
    EndpointsWithCustomErrors
  5. final class EndpointDocs extends Serializable
    Definition Classes
    EndpointsWithCustomErrors
  6. implicit final class EndpointSyntax[A, B] extends AnyRef
    Definition Classes
    EndpointsWithCustomErrors
  7. implicit class InvariantFunctorSyntax[A, F[_]] extends AnyRef
    Definition Classes
    InvariantFunctorSyntax
  8. abstract type Method
    Definition Classes
    Methods
  9. class MuxEndpoint[Req <: MuxRequest, Resp, Transport] extends AnyRef
  10. implicit class PartialInvariantFunctorSyntax[A, F[_]] extends AnyRef
    Definition Classes
    PartialInvariantFunctorSyntax
  11. abstract type Path[A] <: (MuxEndpoints.this)#Url[A]
    Definition Classes
    Urls
  12. implicit class PathOps[A] extends AnyRef
    Definition Classes
    Urls
  13. abstract type QueryString[A]
    Definition Classes
    Urls
  14. abstract type QueryStringParam[A]
    Definition Classes
    Urls
  15. implicit class QueryStringSyntax[A] extends AnyRef
    Definition Classes
    Urls
  16. abstract type Request[A]
    Definition Classes
    Requests
  17. abstract type RequestEntity[A]
    Definition Classes
    Requests
  18. implicit class RequestEntitySyntax[A] extends AnyRef
    Definition Classes
    Requests
  19. abstract type RequestHeaders[A]
    Definition Classes
    Requests
  20. implicit final class RequestSyntax[A] extends AnyRef
    Definition Classes
    Requests
  21. abstract type Response[A]
    Definition Classes
    Responses
  22. abstract type ResponseEntity[A]
    Definition Classes
    Responses
  23. abstract type ResponseHeaders[A]
    Definition Classes
    Responses
  24. implicit class ResponseSyntax[A] extends AnyRef
    Definition Classes
    Responses
  25. abstract type Segment[A]
    Definition Classes
    Urls
  26. implicit class SemigroupalSyntax[A, F[_]] extends AnyRef
    Definition Classes
    SemigroupalSyntax
  27. abstract type ServerError
    Definition Classes
    Errors
  28. abstract type StatusCode
    Definition Classes
    StatusCodes
  29. abstract type Url[A]
    Definition Classes
    Urls
  30. abstract type WithDefault[A]
    Definition Classes
    Urls

Abstract Value Members

  1. abstract def Accepted: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  2. abstract def BadRequest: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  3. abstract def Created: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  4. abstract def Delete: (MuxEndpoints.this)#Method
    Definition Classes
    Methods
  5. abstract def Forbidden: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  6. abstract def Get: (MuxEndpoints.this)#Method
    Definition Classes
    Methods
  7. abstract def InternalServerError: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  8. abstract def NoContent: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  9. abstract def NotFound: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  10. abstract def NotImplemented: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  11. abstract def OK: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  12. abstract def Options: (MuxEndpoints.this)#Method
    Definition Classes
    Methods
  13. abstract def Patch: (MuxEndpoints.this)#Method
    Definition Classes
    Methods
  14. abstract def PayloadTooLarge: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  15. abstract def Post: (MuxEndpoints.this)#Method
    Definition Classes
    Methods
  16. abstract def Put: (MuxEndpoints.this)#Method
    Definition Classes
    Methods
  17. abstract def TooManyRequests: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  18. abstract def Unauthorized: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  19. abstract def chainPaths[A, B](first: (MuxEndpoints.this)#Path[A], second: (MuxEndpoints.this)#Path[B])(implicit tupler: Tupler[A, B]): (MuxEndpoints.this)#Path[Out]
    Definition Classes
    Urls
  20. abstract def choiceRequestEntity[A, B](requestEntityA: (MuxEndpoints.this)#RequestEntity[A], requestEntityB: (MuxEndpoints.this)#RequestEntity[B]): (MuxEndpoints.this)#RequestEntity[Either[A, B]]
    Definition Classes
    Requests
  21. abstract def choiceResponse[A, B](responseA: (MuxEndpoints.this)#Response[A], responseB: (MuxEndpoints.this)#Response[B]): (MuxEndpoints.this)#Response[Either[A, B]]
    Definition Classes
    Responses
  22. abstract def clientErrorsResponseEntity: (MuxEndpoints.this)#ResponseEntity[(MuxEndpoints.this)#ClientErrors]
    Definition Classes
    Errors
  23. abstract def clientErrorsToInvalid(clientErrors: (MuxEndpoints.this)#ClientErrors): Invalid
    Definition Classes
    Errors
  24. abstract def combineQueryStrings[A, B](first: (MuxEndpoints.this)#QueryString[A], second: (MuxEndpoints.this)#QueryString[B])(implicit tupler: Tupler[A, B]): (MuxEndpoints.this)#QueryString[Out]
    Definition Classes
    Urls
  25. abstract def emptyRequest: (MuxEndpoints.this)#RequestEntity[Unit]
    Definition Classes
    Requests
  26. abstract def emptyRequestHeaders: (MuxEndpoints.this)#RequestHeaders[Unit]
    Definition Classes
    Requests
  27. abstract def emptyResponse: (MuxEndpoints.this)#ResponseEntity[Unit]
    Definition Classes
    Responses
  28. abstract def emptyResponseHeaders: (MuxEndpoints.this)#ResponseHeaders[Unit]
    Definition Classes
    Responses
  29. abstract def endpoint[A, B](request: (MuxEndpoints.this)#Request[A], response: (MuxEndpoints.this)#Response[B], docs: (MuxEndpoints.this)#EndpointDocs): (MuxEndpoints.this)#Endpoint[A, B]
    Definition Classes
    EndpointsWithCustomErrors
  30. abstract def invalidToClientErrors(invalid: Invalid): (MuxEndpoints.this)#ClientErrors
    Definition Classes
    Errors
  31. abstract def optRequestHeader(name: String, docs: Documentation): (MuxEndpoints.this)#RequestHeaders[Option[String]]
    Definition Classes
    Requests
  32. abstract def optResponseHeader(name: String, docs: Documentation): (MuxEndpoints.this)#ResponseHeaders[Option[String]]
    Definition Classes
    Responses
  33. implicit abstract def optionalQueryStringParam[A](implicit arg0: (MuxEndpoints.this)#QueryStringParam[A]): (MuxEndpoints.this)#QueryStringParam[Option[A]]
    Definition Classes
    Urls
  34. implicit abstract def pathPartialInvariantFunctor: PartialInvariantFunctor[(MuxEndpoints.this)#Path]
    Definition Classes
    Urls
  35. abstract def qs[A](name: String, docs: Documentation)(implicit value: (MuxEndpoints.this)#QueryStringParam[A]): (MuxEndpoints.this)#QueryString[A]
    Definition Classes
    Urls
  36. implicit abstract def queryStringParamPartialInvariantFunctor: PartialInvariantFunctor[(MuxEndpoints.this)#QueryStringParam]
    Definition Classes
    Urls
  37. implicit abstract def queryStringPartialInvariantFunctor: PartialInvariantFunctor[(MuxEndpoints.this)#QueryString]
    Definition Classes
    Urls
  38. abstract def remainingSegments(name: String, docs: Documentation): (MuxEndpoints.this)#Path[String]
    Definition Classes
    Urls
  39. implicit abstract def repeatedQueryStringParam[A, CC[X] <: Iterable[X]](implicit arg0: (MuxEndpoints.this)#QueryStringParam[A], factory: Factory[A, CC[A]]): (MuxEndpoints.this)#QueryStringParam[CC[A]]
    Definition Classes
    Urls
  40. abstract def request[UrlP, BodyP, HeadersP, UrlAndBodyPTupled, Out](method: (MuxEndpoints.this)#Method, url: (MuxEndpoints.this)#Url[UrlP], entity: (MuxEndpoints.this)#RequestEntity[BodyP], docs: Documentation, headers: (MuxEndpoints.this)#RequestHeaders[HeadersP])(implicit tuplerUB: Tupler.Aux[UrlP, BodyP, UrlAndBodyPTupled], tuplerUBH: Tupler.Aux[UrlAndBodyPTupled, HeadersP, Out]): (MuxEndpoints.this)#Request[Out]
    Definition Classes
    Requests
  41. implicit abstract def requestEntityPartialInvariantFunctor: PartialInvariantFunctor[(MuxEndpoints.this)#RequestEntity]
    Definition Classes
    Requests
  42. abstract def requestHeader(name: String, docs: Documentation): (MuxEndpoints.this)#RequestHeaders[String]
    Definition Classes
    Requests
  43. implicit abstract def requestHeadersPartialInvariantFunctor: PartialInvariantFunctor[(MuxEndpoints.this)#RequestHeaders]
    Definition Classes
    Requests
  44. implicit abstract def requestHeadersSemigroupal: Semigroupal[(MuxEndpoints.this)#RequestHeaders]
    Definition Classes
    Requests
  45. implicit abstract def requestPartialInvariantFunctor: PartialInvariantFunctor[(MuxEndpoints.this)#Request]
    Definition Classes
    Requests
  46. abstract def response[A, B, R](statusCode: (MuxEndpoints.this)#StatusCode, entity: (MuxEndpoints.this)#ResponseEntity[A], docs: Documentation, headers: (MuxEndpoints.this)#ResponseHeaders[B])(implicit tupler: Tupler.Aux[A, B, R]): (MuxEndpoints.this)#Response[R]
    Definition Classes
    Responses
  47. implicit abstract def responseEntityInvariantFunctor: InvariantFunctor[(MuxEndpoints.this)#ResponseEntity]
    Definition Classes
    Responses
  48. abstract def responseHeader(name: String, docs: Documentation): (MuxEndpoints.this)#ResponseHeaders[String]
    Definition Classes
    Responses
  49. implicit abstract def responseHeadersInvariantFunctor: InvariantFunctor[(MuxEndpoints.this)#ResponseHeaders]
    Definition Classes
    Responses
  50. implicit abstract def responseHeadersSemigroupal: Semigroupal[(MuxEndpoints.this)#ResponseHeaders]
    Definition Classes
    Responses
  51. implicit abstract def responseInvariantFunctor: InvariantFunctor[(MuxEndpoints.this)#Response]
    Definition Classes
    Responses
  52. abstract def segment[A](name: String, docs: Documentation)(implicit s: (MuxEndpoints.this)#Segment[A]): (MuxEndpoints.this)#Path[A]
    Definition Classes
    Urls
  53. implicit abstract def segmentPartialInvariantFunctor: PartialInvariantFunctor[(MuxEndpoints.this)#Segment]
    Definition Classes
    Urls
  54. abstract def serverErrorResponseEntity: (MuxEndpoints.this)#ResponseEntity[(MuxEndpoints.this)#ServerError]
    Definition Classes
    Errors
  55. abstract def serverErrorToThrowable(serverError: (MuxEndpoints.this)#ServerError): Throwable
    Definition Classes
    Errors
  56. abstract def staticPathSegment(segment: String): (MuxEndpoints.this)#Path[Unit]
    Definition Classes
    Urls
  57. implicit abstract def stringQueryString: (MuxEndpoints.this)#QueryStringParam[String]
    Definition Classes
    Urls
  58. implicit abstract def stringSegment: (MuxEndpoints.this)#Segment[String]
    Definition Classes
    Urls
  59. abstract def textRequest: (MuxEndpoints.this)#RequestEntity[String]
    Definition Classes
    Requests
  60. abstract def textResponse: (MuxEndpoints.this)#ResponseEntity[String]
    Definition Classes
    Responses
  61. abstract def throwableToServerError(throwable: Throwable): (MuxEndpoints.this)#ServerError
    Definition Classes
    Errors
  62. implicit abstract def urlPartialInvariantFunctor: PartialInvariantFunctor[(MuxEndpoints.this)#Url]
    Definition Classes
    Urls
  63. abstract def urlWithQueryString[A, B](path: (MuxEndpoints.this)#Path[A], qs: (MuxEndpoints.this)#QueryString[B])(implicit tupler: Tupler[A, B]): (MuxEndpoints.this)#Url[Out]
    Definition Classes
    Urls

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. def +(other: String): String
    Implicit
    This member is added by an implicit conversion from MuxEndpoints toany2stringadd[MuxEndpoints] performed by method any2stringadd in scala.Predef.
    Definition Classes
    any2stringadd
  4. def ->[B](y: B): (MuxEndpoints, B)
    Implicit
    This member is added by an implicit conversion from MuxEndpoints toArrowAssoc[MuxEndpoints] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @inline()
  5. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  6. def AlreadyReported: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  7. def Conflict: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  8. def ExpectationFailed: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  9. def FailedDependency: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  10. def Gone: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  11. def IMUsed: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  12. def LengthRequired: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  13. def Locked: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  14. def MethodNotAllowed: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  15. def MisdirectedRequest: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  16. def MultiStatus: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  17. def NonAuthoritativeInformation: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  18. def NotAcceptable: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  19. def NotModified: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  20. def PartialContent: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  21. def PaymentRequired: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  22. def PermanentRedirect: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  23. def PreconditionFailed: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  24. def PreconditionRequired: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  25. def ProxyAuthenticationRequired: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  26. def RangeNotSatisfiable: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  27. def RequestHeaderFieldsTooLarge: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  28. def RequestTimeout: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  29. def ResetContent: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  30. def TemporaryRedirect: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  31. def TooEarly: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  32. def UnavailableForLegalReasons: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  33. def UnprocessableEntity: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  34. def UnsupportedMediaType: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  35. def UpgradeRequired: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  36. def UriTooLong: (MuxEndpoints.this)#StatusCode
    Definition Classes
    StatusCodes
  37. def addRequestHeaders[A, H](request: (MuxEndpoints.this)#Request[A], headers: (MuxEndpoints.this)#RequestHeaders[H])(implicit tupler: Tupler[A, H]): (MuxEndpoints.this)#Request[Out]
    Definition Classes
    Requests
  38. def addRequestQueryString[A, Q](request: (MuxEndpoints.this)#Request[A], queryString: (MuxEndpoints.this)#QueryString[Q])(implicit tupler: Tupler[A, Q]): (MuxEndpoints.this)#Request[Out]
    Definition Classes
    Requests
  39. def addResponseHeaders[A, H](response: (MuxEndpoints.this)#Response[A], headers: (MuxEndpoints.this)#ResponseHeaders[H])(implicit tupler: Tupler[A, H]): (MuxEndpoints.this)#Response[Out]
    Definition Classes
    Responses
  40. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  41. final def badRequest[A, R](docs: Documentation, headers: (MuxEndpoints.this)#ResponseHeaders[A])(implicit tupler: Tupler.Aux[(MuxEndpoints.this)#ClientErrors, A, R]): (MuxEndpoints.this)#Response[R]
    Definition Classes
    Responses
  42. implicit def booleanQueryString: (MuxEndpoints.this)#QueryStringParam[Boolean]
    Definition Classes
    Urls
  43. lazy val clientErrorsResponse: (MuxEndpoints.this)#Response[(MuxEndpoints.this)#ClientErrors]
    Definition Classes
    Errors
  44. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  45. final def delete[UrlP, HeadersP, Out](url: (MuxEndpoints.this)#Url[UrlP], docs: Documentation, headers: (MuxEndpoints.this)#RequestHeaders[HeadersP])(implicit tuplerUH: Tupler.Aux[UrlP, HeadersP, Out]): (MuxEndpoints.this)#Request[Out]
    Definition Classes
    Requests
  46. implicit def doubleQueryString: (MuxEndpoints.this)#QueryStringParam[Double]
    Definition Classes
    Urls
  47. implicit def doubleSegment: (MuxEndpoints.this)#Segment[Double]
    Definition Classes
    Urls
  48. def ensuring(cond: (MuxEndpoints) => Boolean, msg: => Any): MuxEndpoints
    Implicit
    This member is added by an implicit conversion from MuxEndpoints toEnsuring[MuxEndpoints] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  49. def ensuring(cond: (MuxEndpoints) => Boolean): MuxEndpoints
    Implicit
    This member is added by an implicit conversion from MuxEndpoints toEnsuring[MuxEndpoints] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  50. def ensuring(cond: Boolean, msg: => Any): MuxEndpoints
    Implicit
    This member is added by an implicit conversion from MuxEndpoints toEnsuring[MuxEndpoints] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  51. def ensuring(cond: Boolean): MuxEndpoints
    Implicit
    This member is added by an implicit conversion from MuxEndpoints toEnsuring[MuxEndpoints] performed by method Ensuring in scala.Predef.
    Definition Classes
    Ensuring
  52. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  53. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  54. final def get[UrlP, HeadersP, Out](url: (MuxEndpoints.this)#Url[UrlP], docs: Documentation, headers: (MuxEndpoints.this)#RequestHeaders[HeadersP])(implicit tuplerUH: Tupler.Aux[UrlP, HeadersP, Out]): (MuxEndpoints.this)#Request[Out]
    Definition Classes
    Requests
  55. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  56. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  57. implicit def intQueryString: (MuxEndpoints.this)#QueryStringParam[Int]
    Definition Classes
    Urls
  58. implicit def intSegment: (MuxEndpoints.this)#Segment[Int]
    Definition Classes
    Urls
  59. final def internalServerError[A, R](docs: Documentation, headers: (MuxEndpoints.this)#ResponseHeaders[A])(implicit tupler: Tupler.Aux[(MuxEndpoints.this)#ServerError, A, R]): (MuxEndpoints.this)#Response[R]
    Definition Classes
    Responses
  60. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  61. implicit def longQueryString: (MuxEndpoints.this)#QueryStringParam[Long]
    Definition Classes
    Urls
  62. implicit def longSegment: (MuxEndpoints.this)#Segment[Long]
    Definition Classes
    Urls
  63. def mapEndpointDocs[A, B](endpoint: (MuxEndpoints.this)#Endpoint[A, B], func: ((MuxEndpoints.this)#EndpointDocs) => (MuxEndpoints.this)#EndpointDocs): (MuxEndpoints.this)#Endpoint[A, B]
    Definition Classes
    EndpointsWithCustomErrors
  64. def mapEndpointRequest[A, B, C](endpoint: (MuxEndpoints.this)#Endpoint[A, B], func: ((MuxEndpoints.this)#Request[A]) => (MuxEndpoints.this)#Request[C]): (MuxEndpoints.this)#Endpoint[C, B]
    Definition Classes
    EndpointsWithCustomErrors
  65. def mapEndpointResponse[A, B, C](endpoint: (MuxEndpoints.this)#Endpoint[A, B], func: ((MuxEndpoints.this)#Response[B]) => (MuxEndpoints.this)#Response[C]): (MuxEndpoints.this)#Endpoint[A, C]
    Definition Classes
    EndpointsWithCustomErrors
  66. def muxEndpoint[Req <: MuxRequest, Resp, Transport](request: (MuxEndpoints.this)#Request[Transport], response: (MuxEndpoints.this)#Response[Transport]): (MuxEndpoints.this)#MuxEndpoint[Req, Resp, Transport]
    Definition Classes
    MuxEndpoints → MuxEndpoints
  67. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  68. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  69. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  70. final def ok[A, B, R](entity: (MuxEndpoints.this)#ResponseEntity[A], docs: Documentation, headers: (MuxEndpoints.this)#ResponseHeaders[B])(implicit tupler: Tupler.Aux[A, B, R]): (MuxEndpoints.this)#Response[R]
    Definition Classes
    Responses
  71. def optQsWithDefault[A](name: String, default: A, docs: Documentation)(implicit value: (MuxEndpoints.this)#QueryStringParam[A]): (MuxEndpoints.this)#QueryString[(MuxEndpoints.this)#WithDefault[A]]
    Definition Classes
    Urls
  72. final def patch[UrlP, BodyP, HeadersP, UrlAndBodyPTupled, Out](url: (MuxEndpoints.this)#Url[UrlP], entity: (MuxEndpoints.this)#RequestEntity[BodyP], docs: Documentation, headers: (MuxEndpoints.this)#RequestHeaders[HeadersP])(implicit tuplerUB: Tupler.Aux[UrlP, BodyP, UrlAndBodyPTupled], tuplerUBH: Tupler.Aux[UrlAndBodyPTupled, HeadersP, Out]): (MuxEndpoints.this)#Request[Out]
    Definition Classes
    Requests
  73. val path: (MuxEndpoints.this)#Path[Unit]
    Definition Classes
    Urls
  74. final def post[UrlP, BodyP, HeadersP, UrlAndBodyPTupled, Out](url: (MuxEndpoints.this)#Url[UrlP], entity: (MuxEndpoints.this)#RequestEntity[BodyP], docs: Documentation, headers: (MuxEndpoints.this)#RequestHeaders[HeadersP])(implicit tuplerUB: Tupler.Aux[UrlP, BodyP, UrlAndBodyPTupled], tuplerUBH: Tupler.Aux[UrlAndBodyPTupled, HeadersP, Out]): (MuxEndpoints.this)#Request[Out]
    Definition Classes
    Requests
  75. final def put[UrlP, BodyP, HeadersP, UrlAndBodyPTupled, Out](url: (MuxEndpoints.this)#Url[UrlP], entity: (MuxEndpoints.this)#RequestEntity[BodyP], docs: Documentation, headers: (MuxEndpoints.this)#RequestHeaders[HeadersP])(implicit tuplerUB: Tupler.Aux[UrlP, BodyP, UrlAndBodyPTupled], tuplerUBH: Tupler.Aux[UrlAndBodyPTupled, HeadersP, Out]): (MuxEndpoints.this)#Request[Out]
    Definition Classes
    Requests
  76. lazy val serverErrorResponse: (MuxEndpoints.this)#Response[(MuxEndpoints.this)#ServerError]
    Definition Classes
    Errors
  77. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  78. def toString(): String
    Definition Classes
    AnyRef → Any
  79. implicit def uuidQueryString: (MuxEndpoints.this)#QueryStringParam[UUID]
    Definition Classes
    Urls
  80. implicit def uuidSegment: (MuxEndpoints.this)#Segment[UUID]
    Definition Classes
    Urls
  81. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  82. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  83. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  84. final def wheneverFound[A](responseA: (MuxEndpoints.this)#Response[A], notFoundDocs: Documentation): (MuxEndpoints.this)#Response[Option[A]]
    Definition Classes
    Responses
  85. object EndpointDocs extends Serializable
    Definition Classes
    EndpointsWithCustomErrors

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated
  2. def formatted(fmtstr: String): String
    Implicit
    This member is added by an implicit conversion from MuxEndpoints toStringFormat[MuxEndpoints] performed by method StringFormat in scala.Predef.
    Definition Classes
    StringFormat
    Annotations
    @deprecated @inline()
    Deprecated

    (Since version 2.12.16) Use formatString.format(value) instead of value.formatted(formatString), or use the f"" string interpolator. In Java 15 and later, formatted resolves to the new method in String which has reversed parameters.

  3. def [B](y: B): (MuxEndpoints, B)
    Implicit
    This member is added by an implicit conversion from MuxEndpoints toArrowAssoc[MuxEndpoints] performed by method ArrowAssoc in scala.Predef.
    Definition Classes
    ArrowAssoc
    Annotations
    @deprecated
    Deprecated

    (Since version 2.13.0) Use -> instead. If you still wish to display it as one character, consider using a font with programming ligatures such as Fira Code.

Inherited from algebra.MuxEndpoints

Inherited from algebra.EndpointsWithCustomErrors

Inherited from Errors

Inherited from Responses

Inherited from algebra.StatusCodes

Inherited from Requests

Inherited from endpoints4s.SemigroupalSyntax

Inherited from algebra.Methods

Inherited from algebra.Urls

Inherited from endpoints4s.PartialInvariantFunctorSyntax

Inherited from endpoints4s.InvariantFunctorSyntax

Inherited from AnyRef

Inherited from Any

Inherited by implicit conversion any2stringadd fromMuxEndpoints to any2stringadd[MuxEndpoints]

Inherited by implicit conversion StringFormat fromMuxEndpoints to StringFormat[MuxEndpoints]

Inherited by implicit conversion Ensuring fromMuxEndpoints to Ensuring[MuxEndpoints]

Inherited by implicit conversion ArrowAssoc fromMuxEndpoints to ArrowAssoc[MuxEndpoints]

Ungrouped