object Directives extends Directives
Collects all default directives into one object for simple importing.
- Source
- Directives.scala
- Alphabetic
- By Inheritance
- Directives
- Directives
- Http4sDirectives
- AttributeDirectives
- FramedEntityStreamingDirectives
- WebSocketDirectives
- SecurityDirectives
- SchemeDirectives
- RouteDirectives
- RespondWithDirectives
- RangeDirectives
- PathDirectives
- ImplicitPathMatcherConstruction
- PathMatchers
- TimeoutDirectives
- ParameterDirectives
- ParameterDirectivesInstances
- MiscDirectives
- MethodDirectives
- MarshallingDirectives
- HostDirectives
- HeaderDirectives
- IODirectives
- FormFieldDirectives
- ToNameReceptacleEnhancements
- FormFieldDirectivesInstances
- FileUploadDirectives
- FileAndResourceDirectives
- ExecutionDirectives
- CodingDirectives
- DebuggingDirectives
- CookieDirectives
- CacheConditionDirectives
- BasicDirectives
- RouteConcatenation
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Type Members
- type AsyncAuthenticator[T] = (CredentialsHelper) => IO[Option[T]]
- Definition Classes
- SecurityDirectives
- type AsyncAuthenticatorPF[T] = PartialFunction[CredentialsHelper, IO[T]]
- Definition Classes
- SecurityDirectives
- type AuthenticationResult[+T] = Either[Challenge, T]
The result of an HTTP authentication attempt is either the user object or an HttpChallenge to present to the browser.
The result of an HTTP authentication attempt is either the user object or an HttpChallenge to present to the browser.
- Definition Classes
- SecurityDirectives
- type Authenticator[T] = (CredentialsHelper) => Option[T]
- Definition Classes
- SecurityDirectives
- type AuthenticatorPF[T] = PartialFunction[CredentialsHelper, T]
- Definition Classes
- SecurityDirectives
- abstract class NumberMatcher[T] extends PathMatcher1[T]
- Definition Classes
- PathMatchers
- trait ParamSpec extends AnyRef
- Definition Classes
- ParameterDirectives
- implicit class RouteWithConcatenation extends AnyRef
- Definition Classes
- RouteConcatenation
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- val DoubleNumber: PathMatcher1[Double]
A PathMatcher that matches and extracts a Double value.
A PathMatcher that matches and extracts a Double value. The matched string representation is the pure decimal, optionally signed form of a double value, i.e. without exponent.
- Definition Classes
- PathMatchers
- val JavaUUID: PathMatcher1[UUID]
A PathMatcher that matches and extracts a java.util.UUID instance.
A PathMatcher that matches and extracts a java.util.UUID instance.
- Definition Classes
- PathMatchers
- val Neutral: PathMatcher0
A PathMatcher that always matches, doesn't consume anything and extracts nothing.
A PathMatcher that always matches, doesn't consume anything and extracts nothing. Serves mainly as a neutral element in PathMatcher composition.
- Definition Classes
- PathMatchers
- def Segments(min: Int, max: Int): PathMatcher1[List[String]]
A PathMatcher that matches between
minandmax(both inclusively) path segments (separated by slashes) as a List[String].A PathMatcher that matches between
minandmax(both inclusively) path segments (separated by slashes) as a List[String]. If there are more thancountsegments present the remaining ones will be left unmatched. If the path has a trailing slash this slash will *not* be matched.- Definition Classes
- PathMatchers
- def Segments(count: Int): PathMatcher1[List[String]]
A PathMatcher that matches the given number of path segments (separated by slashes) as a List[String].
A PathMatcher that matches the given number of path segments (separated by slashes) as a List[String]. If there are more than
countsegments present the remaining ones will be left unmatched. If the path has a trailing slash this slash will *not* be matched.- Definition Classes
- PathMatchers
- val Segments: PathMatcher1[List[String]]
A PathMatcher that matches up to 128 remaining segments as a List[String].
A PathMatcher that matches up to 128 remaining segments as a List[String]. This can also be no segments resulting in the empty list. If the path has a trailing slash this slash will *not* be matched.
- Definition Classes
- PathMatchers
- implicit def _regex2PathMatcher(regex: Regex): PathMatcher1[String]
Creates a PathMatcher that consumes (a prefix of) the first path segment if the path begins with a segment (a prefix of) which matches the given regex.
Creates a PathMatcher that consumes (a prefix of) the first path segment if the path begins with a segment (a prefix of) which matches the given regex. Extracts either the complete match (if the regex doesn't contain a capture group) or the capture group (if the regex contains exactly one). If the regex contains more than one capture group the method throws an IllegalArgumentException.
- Definition Classes
- ImplicitPathMatcherConstruction
- implicit def _segmentStringToPathMatcher(segment: String): PathMatcher0
Creates a PathMatcher that consumes (a prefix of) the first path segment (if the path begins with a segment).
Creates a PathMatcher that consumes (a prefix of) the first path segment (if the path begins with a segment).
- Definition Classes
- ImplicitPathMatcherConstruction
- implicit def _string2NR(string: String): NameReceptacle[String]
- Definition Classes
- ToNameReceptacleEnhancements
- Annotations
- @implicitAmbiguous()
- implicit def _stringExtractionPair2PathMatcher[T](tuple: (String, T)): PathMatcher1[T]
Creates a PathMatcher that consumes (a prefix of) the first path segment (if the path begins with a segment) and extracts a given value.
Creates a PathMatcher that consumes (a prefix of) the first path segment (if the path begins with a segment) and extracts a given value.
- Definition Classes
- ImplicitPathMatcherConstruction
- implicit def _stringNameOptionReceptacle2PathMatcher(nr: NameOptionReceptacle[String]): PathMatcher0
- Definition Classes
- ImplicitPathMatcherConstruction
- implicit def _symbol2NR(symbol: Symbol): NameReceptacle[String]
- Definition Classes
- ToNameReceptacleEnhancements
- implicit def _valueMap2PathMatcher[T](valueMap: Map[String, T]): PathMatcher1[T]
Creates a PathMatcher from the given Map of path segments (prefixes) to extracted values.
Creates a PathMatcher from the given Map of path segments (prefixes) to extracted values. If the unmatched path starts with a segment having one of the maps keys as a prefix the matcher consumes this path segment (prefix) and extracts the corresponding map value. For keys sharing a common prefix the longest matching prefix is selected.
- Definition Classes
- ImplicitPathMatcherConstruction
- def as[T](implicit um: EntityDecoder[IO, T]): EntityDecoder[IO, T]
Returns the in-scope EntityDecoder for the given type.
Returns the in-scope EntityDecoder for the given type.
- Definition Classes
- MarshallingDirectives
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def authenticateBasic[T](realm: String, authenticator: Authenticator[T]): AuthenticationDirective[T]
Wraps the inner route with Http Basic authentication support using a given
Authenticator[T].Wraps the inner route with Http Basic authentication support using a given
Authenticator[T]. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.- Definition Classes
- SecurityDirectives
- def authenticateBasicAsync[T](realm: String, authenticator: AsyncAuthenticator[T]): AuthenticationDirective[T]
Wraps the inner route with Http Basic authentication support.
Wraps the inner route with Http Basic authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.
- Definition Classes
- SecurityDirectives
- def authenticateBasicPF[T](realm: String, authenticator: AuthenticatorPF[T]): AuthenticationDirective[T]
A directive that wraps the inner route with Http Basic authentication support.
A directive that wraps the inner route with Http Basic authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.
- Definition Classes
- SecurityDirectives
- def authenticateBasicPFAsync[T](realm: String, authenticator: AsyncAuthenticatorPF[T]): AuthenticationDirective[T]
A directive that wraps the inner route with Http Basic authentication support.
A directive that wraps the inner route with Http Basic authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.
- Definition Classes
- SecurityDirectives
- def authenticateOAuth2[T](realm: String, authenticator: Authenticator[T]): AuthenticationDirective[T]
A directive that wraps the inner route with OAuth2 Bearer Token authentication support.
A directive that wraps the inner route with OAuth2 Bearer Token authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.
- Definition Classes
- SecurityDirectives
- def authenticateOAuth2Async[T](realm: String, authenticator: AsyncAuthenticator[T]): AuthenticationDirective[T]
A directive that wraps the inner route with OAuth2 Bearer Token authentication support.
A directive that wraps the inner route with OAuth2 Bearer Token authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.
- Definition Classes
- SecurityDirectives
- def authenticateOAuth2PF[T](realm: String, authenticator: AuthenticatorPF[T]): AuthenticationDirective[T]
A directive that wraps the inner route with OAuth2 Bearer Token authentication support.
A directive that wraps the inner route with OAuth2 Bearer Token authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.
- Definition Classes
- SecurityDirectives
- def authenticateOAuth2PFAsync[T](realm: String, authenticator: AsyncAuthenticatorPF[T]): AuthenticationDirective[T]
A directive that wraps the inner route with OAuth2 Bearer Token authentication support.
A directive that wraps the inner route with OAuth2 Bearer Token authentication support. The given authenticator determines whether the credentials in the request are valid and, if so, which user object to supply to the inner route.
- Definition Classes
- SecurityDirectives
- def authenticateOrRejectWithChallenge[C <: Credentials, T](authenticator: (Option[C]) => IO[AuthenticationResult[T]])(implicit arg0: ClassTag[C]): AuthenticationDirective[T]
Lifts an authenticator function into a directive.
Lifts an authenticator function into a directive. Same as
authenticateOrRejectWithChallengebut only applies the authenticator function with a certain type of credentials.- Definition Classes
- SecurityDirectives
- def authenticateOrRejectWithChallenge[T](authenticator: (Option[Credentials]) => IO[AuthenticationResult[T]]): AuthenticationDirective[T]
Lifts an authenticator function into a directive.
Lifts an authenticator function into a directive. The authenticator function gets passed in credentials from the Authorization header of the request. If the function returns
Right(user)the user object is provided to the inner route. If the function returnsLeft(challenge)the request is rejected with an AuthenticationFailedRejection that contains this challenge to be added to the response.- Definition Classes
- SecurityDirectives
- def authorize(check: (RequestContext) => Boolean): Directive0
Applies the given authorization check to the request.
Applies the given authorization check to the request. If the check fails the route is rejected with an AuthorizationFailedRejection.
- Definition Classes
- SecurityDirectives
- def authorize(check: => Boolean): Directive0
Applies the given authorization check to the request.
Applies the given authorization check to the request. If the check fails the route is rejected with an AuthorizationFailedRejection.
- Definition Classes
- SecurityDirectives
- def authorizeAsync(check: (RequestContext) => IO[Boolean]): Directive0
Asynchronous version of authorize.
Asynchronous version of authorize. If the IO fails or is completed with
falseauthorization fails and the route is rejected with an AuthorizationFailedRejection.- Definition Classes
- SecurityDirectives
- def authorizeAsync(check: => IO[Boolean]): Directive0
Asynchronous version of authorize.
Asynchronous version of authorize. If the IO fails or is completed with
falseauthorization fails and the route is rejected with an AuthorizationFailedRejection.- Definition Classes
- SecurityDirectives
- def cancelRejection(rejection: Rejection): Directive0
Adds a TransformationRejection cancelling all rejections equal to the given one to the list of rejections potentially coming back from the inner route.
Adds a TransformationRejection cancelling all rejections equal to the given one to the list of rejections potentially coming back from the inner route.
- Definition Classes
- BasicDirectives
- def cancelRejections(cancelFilter: (Rejection) => Boolean): Directive0
Adds a TransformationRejection cancelling all rejections for which the given filter function returns true to the list of rejections potentially coming back from the inner route.
Adds a TransformationRejection cancelling all rejections for which the given filter function returns true to the list of rejections potentially coming back from the inner route.
- Definition Classes
- BasicDirectives
- def cancelRejections(classes: Class[_]*): Directive0
Adds a TransformationRejection cancelling all rejections of one of the given classes to the list of rejections potentially coming back from the inner route.
Adds a TransformationRejection cancelling all rejections of one of the given classes to the list of rejections potentially coming back from the inner route.
- Definition Classes
- BasicDirectives
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
- def complete[T](status: Status, headers: Headers, v: => T)(implicit m: EntityEncoder[IO, T]): StandardRoute
Completes the request using the given arguments.
Completes the request using the given arguments.
- Definition Classes
- RouteDirectives
- def complete[T](status: Status, v: => T)(implicit m: EntityEncoder[IO, T]): StandardRoute
Completes the request using the given arguments.
Completes the request using the given arguments.
- Definition Classes
- RouteDirectives
- def complete(m: => ToResponseMarshallable): StandardRoute
Completes the request using the given arguments.
Completes the request using the given arguments.
- Definition Classes
- RouteDirectives
- def completeOrRecoverWith(magnet: CompleteOrRecoverWithMagnet): Directive1[Throwable]
"Unwraps" a
IO[T]and runs the inner route when the future has failed with the future's failure exception as an extraction of typeThrowable."Unwraps" a
IO[T]and runs the inner route when the future has failed with the future's failure exception as an extraction of typeThrowable. If the future succeeds the request is completed using the values marshaller (This directive therefore requires a marshaller for the futures type to be implicitly available.)- Definition Classes
- IODirectives
- def concat(routes: Route*): Route
Tries the supplied routes in sequence, returning the result of the first route that doesn't reject the request.
Tries the supplied routes in sequence, returning the result of the first route that doesn't reject the request. This is an alternative to direct usage of the infix ~ operator. The ~ can be prone to programmer error, because if it is omitted, the program will still be syntactically correct, but will not actually attempt to match multiple routes, as intended.
- routes
subroutes to concatenate
- returns
the concatenated route
- Definition Classes
- RouteConcatenation
- def cookie(name: String): Directive1[RequestCookie]
Extracts the RequestCookie with the given name.
Extracts the RequestCookie with the given name. If the cookie is not present the request is rejected with a respective MissingCookieRejection.
- Definition Classes
- CookieDirectives
- def delete: Directive0
Rejects all non-DELETE requests.
Rejects all non-DELETE requests.
- Definition Classes
- MethodDirectives
- def deleteCookie(name: String, domain: String = "", path: String = ""): Directive0
Adds a Set-Cookie response header expiring the cookie with the given properties.
Adds a Set-Cookie response header expiring the cookie with the given properties.
- Definition Classes
- CookieDirectives
- def deleteCookie(first: ResponseCookie, more: ResponseCookie*): Directive0
Adds a Set-Cookie response header expiring the given cookies.
Adds a Set-Cookie response header expiring the given cookies.
- Definition Classes
- CookieDirectives
- def entity[T](entityDecoder: EntityDecoder[IO, T]): Directive1[T]
Unmarshalls the requests entity to the given type passes it to its inner Route.
Unmarshalls the requests entity to the given type passes it to its inner Route. If there is a problem with unmarshalling the request is rejected with the Rejection produced by the unmarshaller.
- Definition Classes
- MarshallingDirectives
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- def extract[T](f: (RequestContext) => T): Directive1[T]
Extracts a single value using the given function.
Extracts a single value using the given function.
- Definition Classes
- BasicDirectives
- def extractClientIP: Directive1[Option[IpAddress]]
Extracts the client's IP from either the X-Forwarded-For, Remote-Address, X-Real-IP header or the TCP connection the request was received from (in that order of priority).
Extracts the client's IP from either the X-Forwarded-For, Remote-Address, X-Real-IP header or the TCP connection the request was received from (in that order of priority).
- Definition Classes
- MiscDirectives
- def extractCredentials: Directive1[Option[Credentials]]
Extracts the potentially present Credentials provided with the request's Authorization header.
Extracts the potentially present Credentials provided with the request's Authorization header.
- Definition Classes
- SecurityDirectives
- def extractDataBytes: Directive1[Stream[IO, Byte]]
Extracts the entities
dataBytesfs2.Stream from the RequestContext.Extracts the entities
dataBytesfs2.Stream from the RequestContext.- Definition Classes
- BasicDirectives
- def extractHost: Directive1[String]
Extracts the hostname part of the Host request header value.
Extracts the hostname part of the Host request header value.
- Definition Classes
- HostDirectives
- def extractMatchedPath: Directive1[Path]
Extracts the already matched path from the RequestContext.
Extracts the already matched path from the RequestContext.
- Definition Classes
- BasicDirectives
- def extractMethod: Directive1[Method]
Extracts the request method.
Extracts the request method.
- Definition Classes
- MethodDirectives
- def extractRequest: Directive1[Request[IO]]
Extracts the current Request instance.
Extracts the current Request instance.
- Definition Classes
- BasicDirectives
- def extractRequestContext: Directive1[RequestContext]
Extracts the RequestContext itself.
Extracts the RequestContext itself.
- Definition Classes
- BasicDirectives
- def extractRequestEntity: Directive1[EntityBody[IO]]
Extracts the EntityBody from the RequestContext.
Extracts the EntityBody from the RequestContext.
- Definition Classes
- BasicDirectives
- def extractScheme: Directive1[String]
Extracts the Uri scheme from the request.
Extracts the Uri scheme from the request.
- Definition Classes
- SchemeDirectives
- def extractUnmatchedPath: Directive1[Path]
Extracts the yet unmatched path from the RequestContext.
Extracts the yet unmatched path from the RequestContext.
- Definition Classes
- BasicDirectives
- def extractUri: Directive1[Uri]
Extracts the complete request URI.
Extracts the complete request URI.
- Definition Classes
- BasicDirectives
- def failWith(error: Throwable): StandardRoute
Bubbles the given error up the response chain, where it is dealt with by the closest
handleExceptionsdirective and its ExceptionHandler.Bubbles the given error up the response chain, where it is dealt with by the closest
handleExceptionsdirective and its ExceptionHandler.- Definition Classes
- RouteDirectives
- def fileUpload(fieldName: String): Directive1[(FileInfo, Stream[IO, Byte])]
Collects each body part that is a multipart file as a tuple containing metadata and a
Sourcefor streaming the file contents somewhere.Collects each body part that is a multipart file as a tuple containing metadata and a
Sourcefor streaming the file contents somewhere. If there is no such field the request will be rejected, if there are multiple file parts with the same name, the first one will be used and the subsequent ones ignored.- Definition Classes
- FileUploadDirectives
- def fileUploadAll(fieldName: String): Directive1[Seq[(FileInfo, Stream[IO, Byte])]]
Collects each body part that is a multipart file as a tuple containing metadata and a
Sourcefor streaming the file contents somewhere.Collects each body part that is a multipart file as a tuple containing metadata and a
Sourcefor streaming the file contents somewhere. If there is no such field the request will be rejected. Files are buffered into temporary files on disk so in-memory buffers don't overflow. The temporary files are cleaned up once materialized, or on exit if the stream is not consumed.- Definition Classes
- FileUploadDirectives
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec, pdef21: FieldSpec, pdef22: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec, pdef21: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec): Directive[(Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec): Directive[(Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec): Directive[(Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec, pdef2: FieldSpec): Directive[(Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formField(pdef1: FieldSpec): Directive[(Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFieldMap: Directive1[Map[String, String]]
Extracts HTTP form fields from the request as a
.Map[String, String]Extracts HTTP form fields from the request as a
.Map[String, String]- Definition Classes
- FormFieldDirectives
- def formFieldMultiMap: Directive1[Map[String, List[String]]]
Extracts HTTP form fields from the request as a
.Map[String, List[String]]Extracts HTTP form fields from the request as a
.Map[String, List[String]]- Definition Classes
- FormFieldDirectives
- def formFieldSeq: Directive1[Seq[(String, String)]]
Extracts HTTP form fields from the request as a
.Seq[(String, String)]Extracts HTTP form fields from the request as a
.Seq[(String, String)]- Definition Classes
- FormFieldDirectives
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec, pdef21: FieldSpec, pdef22: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec, pdef21: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec, pdef20: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec, pdef19: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec, pdef18: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec, pdef17: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec, pdef16: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec, pdef15: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec, pdef14: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec, pdef13: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec, pdef12: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec, pdef11: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec, pdef10: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec, pdef9: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec, pdef8: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec): Directive[(Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec): Directive[(Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec): Directive[(Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec, pdef2: FieldSpec): Directive[(Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def formFields(pdef1: FieldSpec): Directive[(Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- FormFieldDirectivesInstances
- def get: Directive0
Rejects all non-GET requests.
Rejects all non-GET requests.
- Definition Classes
- MethodDirectives
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def getFromDirectory(directoryName: String): Route
Completes GET requests with the content of a file underneath the given directory.
Completes GET requests with the content of a file underneath the given directory. If the file cannot be read the Route rejects the request.
- Definition Classes
- FileAndResourceDirectives
- def getFromFile(file: File): Route
Completes GET requests with the content of the given file.
Completes GET requests with the content of the given file. If the file cannot be found or read the request is rejected.
- Definition Classes
- FileAndResourceDirectives
- def getFromFile(fileName: String): Route
Completes GET requests with the content of the given file.
Completes GET requests with the content of the given file. If the file cannot be found or read the request is rejected.
- Definition Classes
- FileAndResourceDirectives
- def getFromResource(resourceName: String): Route
Completes GET requests with the content of the given class-path resource.
Completes GET requests with the content of the given class-path resource. If the resource cannot be found or read the Route rejects the request.
- Definition Classes
- FileAndResourceDirectives
- def getFromResourceDirectory(directoryName: String): Route
Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory".
Same as "getFromDirectory" except that the file is not fetched from the file system but rather from a "resource directory". If the requested resource is itself a directory or cannot be found or read the Route rejects the request.
- Definition Classes
- FileAndResourceDirectives
- def handle(handler: PartialFunction[Request[IO], IO[Response[IO]]], rejections: Seq[Rejection]): StandardRoute
Handle the request using an asynchronous partial function.
Handle the request using an asynchronous partial function.
This directive can be used to include external components request processing components defined as PartialFunction (like those provided by akka-grpc) into a routing tree defined as routes.
- rejections
The list of rejections to reject with if the handler is not defined for a request.
- Definition Classes
- RouteDirectives
- def handle(handler: PartialFunction[Request[IO], IO[Response[IO]]]): StandardRoute
Handle the request using an asynchronous partial function.
Handle the request using an asynchronous partial function.
This directive can be used to include external components request processing components defined as PartialFunction (like those provided by akka-grpc) into a routing tree defined as routes.
When the partial function is not defined for a request, the request is rejected with an empty list of rejections which is equivalent to a "Not Found" rejection.
- Definition Classes
- RouteDirectives
- def handle(handler: (Request[IO]) => IO[Response[IO]]): StandardRoute
Handle the request using a function.
Handle the request using a function.
- Definition Classes
- RouteDirectives
- def handleExceptions(handler: ExceptionHandler): Directive0
Transforms exceptions thrown during evaluation of its inner route using the given pl.iterators.stir.server.ExceptionHandler.
Transforms exceptions thrown during evaluation of its inner route using the given pl.iterators.stir.server.ExceptionHandler.
- Definition Classes
- ExecutionDirectives
- def handleRejections(handler: RejectionHandler): Directive0
Transforms rejections produced by its inner route using the given pl.iterators.stir.server.RejectionHandler.
Transforms rejections produced by its inner route using the given pl.iterators.stir.server.RejectionHandler.
- Definition Classes
- ExecutionDirectives
- def handleSync(handler: PartialFunction[Request[IO], Response[IO]], rejections: Seq[Rejection]): StandardRoute
Handle the request using a synchronous partial function.
Handle the request using a synchronous partial function.
This directive can be used to include external components request processing components defined as PartialFunction (like those provided by akka-grpc) into a routing tree defined as routes.
- rejections
The list of rejections to reject with if the handler is not defined for a request.
- Definition Classes
- RouteDirectives
- def handleSync(handler: PartialFunction[Request[IO], Response[IO]]): StandardRoute
Handle the request using a synchronous partial function.
Handle the request using a synchronous partial function.
This directive can be used to include external components request processing components defined as PartialFunction (like those provided by akka-grpc) into a routing tree defined as routes.
When the partial function is not defined for a request, the request is rejected with an empty list of rejections which is equivalent to a "Not Found" rejection.
- Definition Classes
- RouteDirectives
- def handleSync(handler: (Request[IO]) => Response[IO]): StandardRoute
Handle the request using a function.
Handle the request using a function.
- Definition Classes
- RouteDirectives
- def handleWebSocketMessages(ws: WebSocketBuilder2[IO], send: Stream[IO, WebSocketFrame], receive: Pipe[IO, WebSocketFrame, Unit]): Route
Handles WebSocket requests with the given handlers and responses to other requests with an org.http4s.Status.NotImplemented status code.
Handles WebSocket requests with the given handlers and responses to other requests with an org.http4s.Status.NotImplemented status code.
- Definition Classes
- WebSocketDirectives
- def handleWebSocketMessages(ws: WebSocketBuilder2[IO], handler: Pipe[IO, WebSocketFrame, WebSocketFrame]): Route
Handles WebSocket requests with the given handler and responses to other requests with an org.http4s.Status.NotImplemented status code.
Handles WebSocket requests with the given handler and responses to other requests with an org.http4s.Status.NotImplemented status code.
- Definition Classes
- WebSocketDirectives
- def handleWith[A, B](f: (A) => B)(implicit entityDecoder: EntityDecoder[IO, A], m: ToResponseMarshaller[B]): Route
Completes the request using the given function.
Completes the request using the given function. The input to the function is produced with the in-scope entity unmarshaller and the result value of the function is marshalled with the in-scope marshaller.
- Definition Classes
- MarshallingDirectives
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def head: Directive0
Rejects all non-HEAD requests.
Rejects all non-HEAD requests.
- Definition Classes
- MethodDirectives
- def headerValue[T](f: (Raw) => Option[T]): Directive1[T]
Extracts an HTTP header value using the given function.
Extracts an HTTP header value using the given function. If the function result is undefined for all headers the request is rejected with an empty rejection set. If the given function throws an exception the request is rejected with a pl.iterators.stir.server.MalformedHeaderRejection.
- Definition Classes
- HeaderDirectives
- def headerValueByName(headerName: String): Directive1[String]
Extracts the value of the HTTP request header with the given name.
Extracts the value of the HTTP request header with the given name. If no header with a matching name is found the request is rejected with a pl.iterators.stir.server.MissingHeaderRejection.
- Definition Classes
- HeaderDirectives
- def headerValueByType[T](implicit ev: Select[T], cls: ClassTag[T]): Directive1[F[T]]
Extracts the first HTTP request header of the given type.
Extracts the first HTTP request header of the given type. If no header with a matching type is found the request is rejected with a MissingHeaderRejection.
Custom headers will only be matched by this directive if ev Header.Select[T] is provided.
- Definition Classes
- HeaderDirectives
- def headerValuePF[T](pf: PartialFunction[Raw, T]): Directive1[T]
Extracts an HTTP header value using the given partial function.
Extracts an HTTP header value using the given partial function. If the function is undefined for all headers the request is rejected with an empty rejection set.
- Definition Classes
- HeaderDirectives
- def host(regex: Regex): Directive1[String]
Rejects all requests with a host name that doesn't have a prefix matching the given regular expression.
Rejects all requests with a host name that doesn't have a prefix matching the given regular expression. For all matching requests the prefix string matching the regex is extracted and passed to the inner route. If the regex contains a capturing group only the string matched by this group is extracted. If the regex contains more than one capturing group an IllegalArgumentException is thrown.
- Definition Classes
- HostDirectives
- def host(predicate: (String) => Boolean): Directive0
Rejects all requests for whose host name the given predicate function returns false.
Rejects all requests for whose host name the given predicate function returns false.
- Definition Classes
- HostDirectives
- def host(hostNames: String*): Directive0
Rejects all requests with a host name different from the given ones.
Rejects all requests with a host name different from the given ones.
- Definition Classes
- HostDirectives
- def httpRoutesOf(pf: PartialFunction[Request[IO], IO[Response[IO]]]): Route
- Definition Classes
- Http4sDirectives
- def ignoreTrailingSlash: Directive0
Tries to match the inner route and if it fails with an empty rejection, it tries it again adding (or removing) the trailing slash on the given path.
Tries to match the inner route and if it fails with an empty rejection, it tries it again adding (or removing) the trailing slash on the given path.
- Definition Classes
- PathDirectives
- def instanceOf[T](implicit m: ToResponseMarshaller[T]): ToResponseMarshaller[T]
Returns the in-scope Marshaller for the given type.
Returns the in-scope Marshaller for the given type.
- Definition Classes
- MarshallingDirectives
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- def logRequest(logHeaders: Boolean = true, logBody: Boolean = true, redactHeadersWhen: (CIString) => Boolean = Headers.SensitiveHeaders.contains, logAction: Option[(String) => IO[Unit]] = None): Directive0
Produces a log entry for every incoming request.
Produces a log entry for every incoming request.
- Definition Classes
- DebuggingDirectives
- def logRequestResult(logHeaders: Boolean = true, logBody: Boolean = true, redactHeadersWhen: (CIString) => Boolean = Headers.SensitiveHeaders.contains, logAction: Option[(String) => IO[Unit]] = None): Directive0
Produces a log entry for every incoming request and RouteResult.
Produces a log entry for every incoming request and RouteResult.
- Definition Classes
- DebuggingDirectives
- def logResult(logHeaders: Boolean = true, logBody: Boolean = true, redactHeadersWhen: (CIString) => Boolean = Headers.SensitiveHeaders.contains, logAction: Option[(String) => IO[Unit]] = None): Directive0
Produces a log entry for every RouteResult.
Produces a log entry for every RouteResult.
- Definition Classes
- DebuggingDirectives
- def mapInnerRoute(f: (Route) => Route): Directive0
- Definition Classes
- BasicDirectives
- def mapRejections(f: (Seq[Rejection]) => Seq[Rejection]): Directive0
- Definition Classes
- BasicDirectives
- def mapRequest(f: (Request[IO]) => Request[IO]): Directive0
- Definition Classes
- BasicDirectives
- def mapRequestContext(f: (RequestContext) => RequestContext): Directive0
- Definition Classes
- BasicDirectives
- def mapResponse(f: (Response[IO]) => Response[IO]): Directive0
- Definition Classes
- BasicDirectives
- def mapResponseEntity(f: (EntityBody[IO]) => EntityBody[IO]): Directive0
- Definition Classes
- BasicDirectives
- def mapResponseHeaders(f: (Headers) => Headers): Directive0
- Definition Classes
- BasicDirectives
- def mapRouteResult(f: (RouteResult) => RouteResult): Directive0
- Definition Classes
- BasicDirectives
- def mapRouteResultIO(f: (IO[RouteResult]) => IO[RouteResult]): Directive0
- Definition Classes
- BasicDirectives
- def mapRouteResultPF(f: PartialFunction[RouteResult, RouteResult]): Directive0
- Definition Classes
- BasicDirectives
- def mapRouteResultWith(f: (RouteResult) => IO[RouteResult]): Directive0
- Definition Classes
- BasicDirectives
- def mapRouteResultWithPF(f: PartialFunction[RouteResult, IO[RouteResult]]): Directive0
- Definition Classes
- BasicDirectives
- def mapUnmatchedPath(f: (Path) => Path): Directive0
Transforms the unmatchedPath of the RequestContext using the given function.
Transforms the unmatchedPath of the RequestContext using the given function.
- Definition Classes
- BasicDirectives
- def method(httpMethod: Method): Directive0
Rejects all requests whose HTTP method does not match the given one.
Rejects all requests whose HTTP method does not match the given one.
- Definition Classes
- MethodDirectives
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def not(self: PathMatcher[_]): PathMatcher0
- Definition Classes
- PathMatchers
- def nothingMatcher[L](implicit arg0: Tuple[L]): PathMatcher[L]
A PathMatcher that never matches anything.
A PathMatcher that never matches anything.
- Definition Classes
- PathMatchers
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @native() @HotSpotIntrinsicCandidate()
- def onComplete[T](io: => IO[T]): Directive1[Try[T]]
"Unwraps" a
IO[T]and runs the inner route after io completion with the io's value as an extraction of typeTry[T]."Unwraps" a
IO[T]and runs the inner route after io completion with the io's value as an extraction of typeTry[T].- Definition Classes
- IODirectives
- def onSuccess(magnet: OnSuccessMagnet): Directive[Out]
"Unwraps" a
IO[T]and runs the inner route after future completion with the future's value as an extraction of typeT."Unwraps" a
IO[T]and runs the inner route after future completion with the future's value as an extraction of typeT. If the future fails its failure Throwable is bubbled up to the nearest ExceptionHandler. If typeTis already a Tuple it is directly expanded into the respective number of extractions.- Definition Classes
- IODirectives
- def optionalCookie(name: String): Directive1[Option[RequestCookie]]
Extracts the RequestCookie with the given name as an
Option[HttpCookiePair].Extracts the RequestCookie with the given name as an
Option[HttpCookiePair]. If the cookie is not present a value ofNoneis extracted.- Definition Classes
- CookieDirectives
- def optionalHeaderValue[T](f: (Raw) => Option[T]): Directive1[Option[T]]
Extracts an optional HTTP header value using the given function.
Extracts an optional HTTP header value using the given function. If the given function throws an exception the request is rejected with a pl.iterators.stir.server.MalformedHeaderRejection.
- Definition Classes
- HeaderDirectives
- def optionalHeaderValueByName(headerName: String): Directive1[Option[String]]
Extracts the value of the optional HTTP request header with the given name.
Extracts the value of the optional HTTP request header with the given name.
- Definition Classes
- HeaderDirectives
- def optionalHeaderValueByType[T](implicit ev: Select[T]): Directive1[Option[F[T]]]
Extract the header value of the optional HTTP request header with the given type.
Extract the header value of the optional HTTP request header with the given type.
Custom headers will only be matched by this directive if ev Header.Select[T] is provided.
- Definition Classes
- HeaderDirectives
- def optionalHeaderValuePF[T](pf: PartialFunction[Raw, T]): Directive1[Option[T]]
Extracts an optional HTTP header value using the given partial function.
Extracts an optional HTTP header value using the given partial function. If the given function throws an exception the request is rejected with a pl.iterators.stir.server.MalformedHeaderRejection.
- Definition Classes
- HeaderDirectives
- def options: Directive0
Rejects all non-OPTIONS requests.
Rejects all non-OPTIONS requests.
- Definition Classes
- MethodDirectives
- def overrideMethodWithParameter(paramName: String): Directive0
Changes the HTTP method of the request to the value of the specified query string parameter.
Changes the HTTP method of the request to the value of the specified query string parameter. If the query string parameter is not specified this directive has no effect. If the query string is specified as something that is not a HTTP method, then this directive completes the request with a
501 Not Implementedresponse.This directive is useful for:
- Use in combination with JSONP (JSONP only supports GET)
- Supporting older browsers that lack support for certain HTTP methods. E.g. IE8 does not support PATCH
- Definition Classes
- MethodDirectives
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec, pdef18: directives.ParameterDirectives.ParamSpec, pdef19: directives.ParameterDirectives.ParamSpec, pdef20: directives.ParameterDirectives.ParamSpec, pdef21: directives.ParameterDirectives.ParamSpec, pdef22: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec, pdef18: directives.ParameterDirectives.ParamSpec, pdef19: directives.ParameterDirectives.ParamSpec, pdef20: directives.ParameterDirectives.ParamSpec, pdef21: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec, pdef18: directives.ParameterDirectives.ParamSpec, pdef19: directives.ParameterDirectives.ParamSpec, pdef20: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec, pdef18: directives.ParameterDirectives.ParamSpec, pdef19: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec, pdef18: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameter(pdef1: directives.ParameterDirectives.ParamSpec): Directive[(Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameterMap: Directive1[Map[String, String]]
Extracts the request's query parameters as a
Map[String, String].Extracts the request's query parameters as a
Map[String, String].- Definition Classes
- ParameterDirectives
- def parameterMultiMap: Directive1[Map[String, Seq[String]]]
Extracts the request's query parameters as a
Map[String, List[String]].Extracts the request's query parameters as a
Map[String, List[String]].- Definition Classes
- ParameterDirectives
- def parameterSeq: Directive1[Seq[(String, String)]]
Extracts the request's query parameters as a
Seq[(String, String)].Extracts the request's query parameters as a
Seq[(String, String)].- Definition Classes
- ParameterDirectives
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec, pdef18: directives.ParameterDirectives.ParamSpec, pdef19: directives.ParameterDirectives.ParamSpec, pdef20: directives.ParameterDirectives.ParamSpec, pdef21: directives.ParameterDirectives.ParamSpec, pdef22: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec, pdef18: directives.ParameterDirectives.ParamSpec, pdef19: directives.ParameterDirectives.ParamSpec, pdef20: directives.ParameterDirectives.ParamSpec, pdef21: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec, pdef18: directives.ParameterDirectives.ParamSpec, pdef19: directives.ParameterDirectives.ParamSpec, pdef20: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec, pdef18: directives.ParameterDirectives.ParamSpec, pdef19: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec, pdef18: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec, pdef17: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec, pdef16: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec, pdef15: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec, pdef14: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec, pdef13: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec, pdef12: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec, pdef11: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec, pdef10: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec, pdef9: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec, pdef8: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec, pdef7: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec, pdef6: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec, pdef5: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec, pdef4: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec, pdef3: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec, pdef2: directives.ParameterDirectives.ParamSpec): Directive[(Out, Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def parameters(pdef1: directives.ParameterDirectives.ParamSpec): Directive[(Out)]
Extracts query parameter values from the request.
Extracts query parameter values from the request. Rejects the request if the defined query parameter matcher(s) don't match.
- Definition Classes
- ParameterDirectivesInstances
- def pass: Directive0
A Directive0 that always passes the request on to its inner route (i.e.
A Directive0 that always passes the request on to its inner route (i.e. does nothing with the request or the response).
- Definition Classes
- BasicDirectives
- def patch: Directive0
Rejects all non-PATCH requests.
Rejects all non-PATCH requests.
- Definition Classes
- MethodDirectives
- def path[L](pm: PathMatcher[L]): Directive[L]
Applies the given PathMatcher to the remaining unmatched path after consuming a leading slash.
Applies the given PathMatcher to the remaining unmatched path after consuming a leading slash. The matcher has to match the remaining path completely. If matched the value extracted by the PathMatcher is extracted on the directive level.
- Definition Classes
- PathDirectives
- def pathEnd: Directive0
Rejects the request if the unmatchedPath of the RequestContext is non-empty, or said differently: only passes on the request to its inner route if the request path has been matched completely.
Rejects the request if the unmatchedPath of the RequestContext is non-empty, or said differently: only passes on the request to its inner route if the request path has been matched completely.
- Definition Classes
- PathDirectives
- def pathEndOrSingleSlash: Directive0
Only passes on the request to its inner route if the request path has been matched completely or only consists of exactly one remaining slash.
Only passes on the request to its inner route if the request path has been matched completely or only consists of exactly one remaining slash.
Note that trailing slash and non-trailing slash URLs are not the same, although they often serve the same content. It is recommended to serve only one URL version and make the other redirect to it using redirectToTrailingSlashIfMissing or redirectToNoTrailingSlashIfPresent directive.
For example:
def route = { // redirect '/users/' to '/users', '/users/:userId/' to '/users/:userId' redirectToNoTrailingSlashIfPresent(Found) { pathPrefix("users") { concat( pathEnd { // user list ... }, path(UUID) { userId => // user profile ... } ) } } }
For further information, refer to:
- Definition Classes
- PathDirectives
- See also
https://webmasters.googleblog.com/2010/04/to-slash-or-not-to-slash.html
- def pathPrefix[L](pm: PathMatcher[L]): Directive[L]
Applies the given PathMatcher to a prefix of the remaining unmatched path after consuming a leading slash.
Applies the given PathMatcher to a prefix of the remaining unmatched path after consuming a leading slash. The matcher has to match a prefix of the remaining path. If matched the value extracted by the PathMatcher is extracted on the directive level.
- Definition Classes
- PathDirectives
- def pathPrefixTest[L](pm: PathMatcher[L]): Directive[L]
Checks whether the unmatchedPath of the RequestContext has a prefix matched by the given PathMatcher.
Checks whether the unmatchedPath of the RequestContext has a prefix matched by the given PathMatcher. In analogy to the
pathPrefixdirective a leading slash is implied.- Definition Classes
- PathDirectives
- def pathSingleSlash: Directive0
Only passes on the request to its inner route if the request path consists of exactly one remaining slash.
Only passes on the request to its inner route if the request path consists of exactly one remaining slash.
- Definition Classes
- PathDirectives
- def pathSuffix[L](pm: PathMatcher[L]): Directive[L]
Applies the given PathMatcher to a suffix of the remaining unmatchedPath of the RequestContext.
Applies the given PathMatcher to a suffix of the remaining unmatchedPath of the RequestContext. If matched the value extracted by the PathMatcher is extracted and the matched parts of the path are consumed. Note that, for efficiency reasons, the given PathMatcher must match the desired suffix in reversed-segment order, i.e.
pathSuffix("baz" / "bar")would match/foo/bar/baz!- Definition Classes
- PathDirectives
- def pathSuffixTest[L](pm: PathMatcher[L]): Directive[L]
Checks whether the unmatchedPath of the RequestContext has a suffix matched by the given PathMatcher.
Checks whether the unmatchedPath of the RequestContext has a suffix matched by the given PathMatcher. However, as opposed to the pathSuffix directive the matched path is not actually "consumed". Note that, for efficiency reasons, the given PathMatcher must match the desired suffix in reversed-segment order, i.e.
pathSuffixTest("baz" / "bar")would match/foo/bar/baz!- Definition Classes
- PathDirectives
- def post: Directive0
Rejects all non-POST requests.
Rejects all non-POST requests.
- Definition Classes
- MethodDirectives
- def provide[T](value: T): Directive1[T]
Injects the given value into a directive.
Injects the given value into a directive.
- Definition Classes
- BasicDirectives
- def put: Directive0
Rejects all non-PUT requests.
Rejects all non-PUT requests.
- Definition Classes
- MethodDirectives
- def rawPathPrefix[L](pm: PathMatcher[L]): Directive[L]
Applies the given matcher directly to a prefix of the unmatched path of the RequestContext (i.e.
Applies the given matcher directly to a prefix of the unmatched path of the RequestContext (i.e. without implicitly consuming a leading slash). The matcher has to match a prefix of the remaining path. If matched the value extracted by the PathMatcher is extracted on the directive level.
- Definition Classes
- PathDirectives
- def rawPathPrefixTest[L](pm: PathMatcher[L]): Directive[L]
Checks whether the unmatchedPath of the RequestContext has a prefix matched by the given PathMatcher.
Checks whether the unmatchedPath of the RequestContext has a prefix matched by the given PathMatcher. However, as opposed to the
pathPrefixdirective the matched path is not actually "consumed".- Definition Classes
- PathDirectives
- def recoverRejections(f: (Seq[Rejection]) => RouteResult): Directive0
- Definition Classes
- BasicDirectives
- def recoverRejectionsWith(f: (Seq[Rejection]) => IO[RouteResult]): Directive0
- Definition Classes
- BasicDirectives
- def redirect(uri: Uri, redirectionType: Status): StandardRoute
Completes the request with redirection response of the given type to the given URI.
Completes the request with redirection response of the given type to the given URI.
- Definition Classes
- RouteDirectives
- def redirectToNoTrailingSlashIfPresent(redirectionType: Status): Directive0
If the request path ends with a slash, redirect to the same uri without trailing slash in the path.
If the request path ends with a slash, redirect to the same uri without trailing slash in the path.
Note, however, that this directive doesn't apply to a URI consisting of just a single slash. HTTP does not support empty target paths, so that browsers will convert a URI such as
http://example.orgtohttp://example.org/adding the trailing slash.Redirecting the single slash path URI would lead to a redirection loop.
Caveat: pathSingleSlash directive will only match on the root path level inside of this directive.
- Definition Classes
- PathDirectives
- def redirectToTrailingSlashIfMissing(redirectionType: Status): Directive0
If the request path doesn't end with a slash, redirect to the same uri with trailing slash in the path.
If the request path doesn't end with a slash, redirect to the same uri with trailing slash in the path.
Caveat: path without trailing slash and pathEnd directives will not match inside of this directive.
- Definition Classes
- PathDirectives
- def reject(rejections: Rejection*): StandardRoute
Rejects the request with the given rejections.
Rejects the request with the given rejections.
- Definition Classes
- RouteDirectives
- def reject: StandardRoute
Rejects the request with an empty set of rejections.
Rejects the request with an empty set of rejections.
- Definition Classes
- RouteDirectives
- def respondWithDefaultHeader(responseHeader: Raw): Directive0
Adds the given response header to all HTTP responses of its inner Route, if the response from the inner Route doesn't already contain a header with the same name.
Adds the given response header to all HTTP responses of its inner Route, if the response from the inner Route doesn't already contain a header with the same name.
- Definition Classes
- RespondWithDirectives
- def respondWithDefaultHeaders(firstHeader: Raw, otherHeaders: Raw*): Directive0
Adds the given response headers to all HTTP responses of its inner Route, if a header already exists it is not added again.
Adds the given response headers to all HTTP responses of its inner Route, if a header already exists it is not added again.
- Definition Classes
- RespondWithDirectives
- def respondWithDefaultHeaders(responseHeaders: Seq[Raw]): Directive0
Adds the given response headers to all HTTP responses of its inner Route, if a header already exists it is not added again.
Adds the given response headers to all HTTP responses of its inner Route, if a header already exists it is not added again.
- Definition Classes
- RespondWithDirectives
- def respondWithHeader(responseHeader: Raw): Directive0
Unconditionally adds the given response header to all HTTP responses of its inner Route.
Unconditionally adds the given response header to all HTTP responses of its inner Route.
- Definition Classes
- RespondWithDirectives
- def respondWithHeaders(firstHeader: Raw, otherHeaders: Raw*): Directive0
- Definition Classes
- RespondWithDirectives
- def respondWithHeaders[A](responseHeaders: Seq[Raw]): Directive0
Unconditionally adds the given response headers to all HTTP responses of its inner Route.
Unconditionally adds the given response headers to all HTTP responses of its inner Route.
- Definition Classes
- RespondWithDirectives
- def scheme(name: String): Directive0
Rejects all requests whose Uri scheme does not match the given one.
Rejects all requests whose Uri scheme does not match the given one.
- Definition Classes
- SchemeDirectives
- def selectPreferredLanguage(first: LanguageTag, more: LanguageTag*): Directive1[LanguageTag]
Inspects the request's
Accept-Languageheader and determines, which of the given language alternatives is preferred by the client.Inspects the request's
Accept-Languageheader and determines, which of the given language alternatives is preferred by the client. (See http://tools.ietf.org/html/rfc7231#section-5.3.5 for more details on the negotiation logic.) If there are several best language alternatives that the client has equal preference for (even if this preference is zero!) the order of the arguments is used as a tie breaker (First one wins).- Definition Classes
- MiscDirectives
- def separateOnSlashes(string: String): PathMatcher0
Converts a path string containing slashes into a PathMatcher that interprets slashes as path segment separators.
Converts a path string containing slashes into a PathMatcher that interprets slashes as path segment separators.
- Definition Classes
- PathMatchers
- def setCookie(first: ResponseCookie, more: ResponseCookie*): Directive0
Adds a `Set-Cookie` response header with the given cookies.
Adds a `Set-Cookie` response header with the given cookies.
- Definition Classes
- CookieDirectives
- def storeUploadedFile(fieldName: String, destFn: (FileInfo) => File): Directive[(FileInfo, File)]
Streams the bytes of the file submitted using multipart with the given file name into a designated file on disk.
Streams the bytes of the file submitted using multipart with the given file name into a designated file on disk. If there is an error writing to disk the request will be failed with the thrown exception, if there is no such field the request will be rejected, if there are multiple file parts with the same name, the first one will be used and the subsequent ones ignored.
- Definition Classes
- FileUploadDirectives
- def storeUploadedFiles(fieldName: String, destFn: (FileInfo) => File): Directive1[Seq[(FileInfo, File)]]
Streams the bytes of the file submitted using multipart with the given field name into designated files on disk.
Streams the bytes of the file submitted using multipart with the given field name into designated files on disk. If there is an error writing to disk the request will be failed with the thrown exception, if there is no such field the request will be rejected. Stored files are cleaned up on exit but not on failure.
- Definition Classes
- FileUploadDirectives
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def textract[L](f: (RequestContext) => L)(implicit arg0: Tuple[L]): Directive[L]
Extracts a number of values using the given function.
Extracts a number of values using the given function.
- Definition Classes
- BasicDirectives
- def toString(): String
- Definition Classes
- AnyRef → Any
- def tprovide[L](values: L)(implicit arg0: Tuple[L]): Directive[L]
Injects the given values into a directive.
Injects the given values into a directive.
- Definition Classes
- BasicDirectives
- def validate(check: => Boolean, errorMsg: String): Directive0
Checks the given condition before running its inner route.
Checks the given condition before running its inner route. If the condition fails the route is rejected with a ValidationRejection.
- Definition Classes
- MiscDirectives
- 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])
- def withRequestTimeout(timeout: Duration, handler: Option[(Request[IO]) => Response[IO]]): Directive0
Tries to set a new request timeout and handler (if provided) at the same time.
Tries to set a new request timeout and handler (if provided) at the same time.
Due to the inherent raciness it is not guaranteed that the update will be applied before the previously set timeout has expired!
- handler
optional custom "timeout response" function. If left None, the default timeout HttpResponse will be used.
- Definition Classes
- TimeoutDirectives
- def withRequestTimeout(timeout: Duration, handler: (Request[IO]) => Response[IO]): Directive0
Tries to set a new request timeout and handler (if provided) at the same time.
Tries to set a new request timeout and handler (if provided) at the same time.
Due to the inherent raciness it is not guaranteed that the update will be applied before the previously set timeout has expired!
- handler
optional custom "timeout response" function. If left None, the default timeout Response[IO] will be used.
- Definition Classes
- TimeoutDirectives
- def withRequestTimeout(timeout: Duration): Directive0
Tries to set a new request timeout and handler (if provided) at the same time.
Tries to set a new request timeout and handler (if provided) at the same time.
Due to the inherent raciness it is not guaranteed that the update will be applied before the previously set timeout has expired!
- Definition Classes
- TimeoutDirectives
- def withoutRequestTimeout: Directive0
- Definition Classes
- TimeoutDirectives
- object HexIntNumber extends NumberMatcher[Int]
A PathMatcher that efficiently matches a number of hex-digits and extracts their (non-negative) Int value.
A PathMatcher that efficiently matches a number of hex-digits and extracts their (non-negative) Int value. The matcher will not match 0 digits or a sequence of digits that would represent an Int value larger than Int.MaxValue.
- Definition Classes
- PathMatchers
- object HexLongNumber extends NumberMatcher[Long]
A PathMatcher that efficiently matches a number of hex-digits and extracts their (non-negative) Long value.
A PathMatcher that efficiently matches a number of hex-digits and extracts their (non-negative) Long value. The matcher will not match 0 digits or a sequence of digits that would represent an Long value larger than Long.MaxValue.
- Definition Classes
- PathMatchers
- object IntNumber extends NumberMatcher[Int]
A PathMatcher that efficiently matches a number of digits and extracts their (non-negative) Int value.
A PathMatcher that efficiently matches a number of digits and extracts their (non-negative) Int value. The matcher will not match 0 digits or a sequence of digits that would represent an Int value larger than Int.MaxValue.
- Definition Classes
- PathMatchers
- object LongNumber extends NumberMatcher[Long]
A PathMatcher that efficiently matches a number of digits and extracts their (non-negative) Long value.
A PathMatcher that efficiently matches a number of digits and extracts their (non-negative) Long value. The matcher will not match 0 digits or a sequence of digits that would represent an Long value larger than Long.MaxValue.
- Definition Classes
- PathMatchers
- object PathEnd extends PathMatcher0
A PathMatcher that matches the very end of the requests URI path.
A PathMatcher that matches the very end of the requests URI path.
- Definition Classes
- PathMatchers
- object Remaining extends PathMatcher1[String]
A PathMatcher that matches and extracts the complete remaining, unmatched part of the request's URI path as an (encoded!) String.
A PathMatcher that matches and extracts the complete remaining, unmatched part of the request's URI path as an (encoded!) String. If you need access to the remaining unencoded elements of the path use the
RemainingPathmatcher!- Definition Classes
- PathMatchers
- object RemainingPath extends PathMatcher1[Path]
A PathMatcher that matches and extracts the complete remaining, unmatched part of the request's URI path.
A PathMatcher that matches and extracts the complete remaining, unmatched part of the request's URI path.
- Definition Classes
- PathMatchers
- object Segment extends PathMatcher1[String]
A PathMatcher that matches if the unmatched path starts with a path segment.
A PathMatcher that matches if the unmatched path starts with a path segment. If so the path segment is extracted as a String.
- Definition Classes
- PathMatchers
- object Slash extends PathMatcher0
A PathMatcher that matches a single slash character ('/').
A PathMatcher that matches a single slash character ('/').
- Definition Classes
- PathMatchers
- object ParamSpec
- Definition Classes
- ParameterDirectives