RejectInterceptor

class RejectInterceptor[F[_]](handler: Failure => Option[StatusCode]) extends RequestInterceptor[F]

Specifies what should be done if decoding the request has failed for all endpoints, and multiple endpoints have been interpreted (doesn't do anything when interpreting a single endpoint).

By default, if there's a method decode failure, this means that the path must have matched (as it's decoded first); then, returning a 405 (method not allowed).

In other cases, not returning a response, assuming that the interpreter will return a "no match" to the server implementation.

Companion
object
trait Interceptor[F]
class Object
trait Matchable
class Any

Value members

Concrete methods

override
def apply[B](responder: Responder[F, B], requestHandler: EndpointInterceptor[F] => RequestHandler[F, B]): RequestHandler[F, B]
Definition Classes