Packages

t

refuel.oauth

OAuth2Protection

trait OAuth2Protection[F[_], U] extends Directives with AutoInject

Linear Supertypes
AutoInject, Directives, AttributeDirectives, FramedEntityStreamingDirectives, WebSocketDirectives, SecurityDirectives, SchemeDirectives, RouteDirectives, RespondWithDirectives, RangeDirectives, PathDirectives, ImplicitPathMatcherConstruction, PathMatchers, TimeoutDirectives, ParameterDirectives, ParameterDirectivesInstances, MiscDirectives, MethodDirectives, MarshallingDirectives, HostDirectives, HeaderDirectives, FutureDirectives, FormFieldDirectives, ToNameReceptacleEnhancements, FormFieldDirectivesInstances, FileUploadDirectives, FileAndResourceDirectives, ExecutionDirectives, CodingDirectives, DebuggingDirectives, CookieDirectives, CacheConditionDirectives, BasicDirectives, RouteConcatenation, AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. OAuth2Protection
  2. AutoInject
  3. Directives
  4. AttributeDirectives
  5. FramedEntityStreamingDirectives
  6. WebSocketDirectives
  7. SecurityDirectives
  8. SchemeDirectives
  9. RouteDirectives
  10. RespondWithDirectives
  11. RangeDirectives
  12. PathDirectives
  13. ImplicitPathMatcherConstruction
  14. PathMatchers
  15. TimeoutDirectives
  16. ParameterDirectives
  17. ParameterDirectivesInstances
  18. MiscDirectives
  19. MethodDirectives
  20. MarshallingDirectives
  21. HostDirectives
  22. HeaderDirectives
  23. FutureDirectives
  24. FormFieldDirectives
  25. ToNameReceptacleEnhancements
  26. FormFieldDirectivesInstances
  27. FileUploadDirectives
  28. FileAndResourceDirectives
  29. ExecutionDirectives
  30. CodingDirectives
  31. DebuggingDirectives
  32. CookieDirectives
  33. CacheConditionDirectives
  34. BasicDirectives
  35. RouteConcatenation
  36. AnyRef
  37. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. type AsyncAuthenticator[T] = (Credentials) ⇒ Future[Option[T]]
    Definition Classes
    SecurityDirectives
  2. type AsyncAuthenticatorPF[T] = PartialFunction[Credentials, Future[T]]
    Definition Classes
    SecurityDirectives
  3. type AuthenticationResult[+T] = Either[HttpChallenge, T]
    Definition Classes
    SecurityDirectives
  4. type Authenticator[T] = (Credentials) ⇒ Option[T]
    Definition Classes
    SecurityDirectives
  5. type AuthenticatorPF[T] = PartialFunction[Credentials, T]
    Definition Classes
    SecurityDirectives
  6. abstract class NumberMatcher[T] extends PathMatcher1[T]
    Definition Classes
    PathMatchers
  7. type RequestToSourceUnmarshaller[T] = Unmarshaller[HttpRequest, Source[T, NotUsed]]
    Definition Classes
    FramedEntityStreamingDirectives

Abstract Value Members

  1. abstract val actionHandler: OAuth2ActionHandler
  2. abstract val grantHandler: GrantHandler[F, U]
  3. abstract val protection: ProtectionEndpoint[F]

Concrete Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. val DoubleNumber: PathMatcher1[Double]
    Definition Classes
    PathMatchers
  5. val JavaUUID: PathMatcher1[UUID]
    Definition Classes
    PathMatchers
  6. val Neutral: PathMatcher0
    Definition Classes
    PathMatchers
  7. def Segments(min: Int, max: Int): PathMatcher1[List[String]]
    Definition Classes
    PathMatchers
  8. def Segments(count: Int): PathMatcher1[List[String]]
    Definition Classes
    PathMatchers
  9. val Segments: PathMatcher1[List[String]]
    Definition Classes
    PathMatchers
  10. def _defaultClassLoader: ClassLoader
    Attributes
    protected[http]
    Definition Classes
    FileAndResourceDirectives
  11. implicit def _enhanceRouteWithConcatenation(route: Route): RouteWithConcatenation
    Definition Classes
    RouteConcatenation
  12. implicit def _regex2PathMatcher(regex: Regex): PathMatcher1[String]
    Definition Classes
    ImplicitPathMatcherConstruction
  13. implicit def _segmentStringToPathMatcher(segment: String): PathMatcher0
    Definition Classes
    ImplicitPathMatcherConstruction
  14. implicit def _string2NR(string: String): NameReceptacle[String]
    Definition Classes
    ToNameReceptacleEnhancements
    Annotations
    @implicitAmbiguous( ... )
  15. implicit def _stringExtractionPair2PathMatcher[T](tuple: (String, T)): PathMatcher1[T]
    Definition Classes
    ImplicitPathMatcherConstruction
  16. implicit def _stringNameOptionReceptacle2PathMatcher(nr: NameOptionReceptacle[String]): PathMatcher0
    Definition Classes
    ImplicitPathMatcherConstruction
  17. implicit def _symbol2NR(symbol: Symbol): NameReceptacle[String]
    Definition Classes
    ToNameReceptacleEnhancements
  18. implicit def _valueMap2PathMatcher[T](valueMap: Map[String, T]): PathMatcher1[T]
    Definition Classes
    ImplicitPathMatcherConstruction
  19. def as[T](implicit um: FromRequestUnmarshaller[T]): FromRequestUnmarshaller[T]
    Definition Classes
    MarshallingDirectives
  20. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  21. final def asSourceOf[T](support: EntityStreamingSupport)(implicit um: FromByteStringUnmarshaller[T]): RequestToSourceUnmarshaller[T]
    Definition Classes
    FramedEntityStreamingDirectives
  22. final def asSourceOf[T](implicit um: FromByteStringUnmarshaller[T], support: EntityStreamingSupport): RequestToSourceUnmarshaller[T]
    Definition Classes
    FramedEntityStreamingDirectives
  23. def attribute[T](key: AttributeKey[T]): Directive1[T]
    Definition Classes
    AttributeDirectives
  24. def authenticateBasic[T](realm: String, authenticator: Authenticator[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  25. def authenticateBasicAsync[T](realm: String, authenticator: AsyncAuthenticator[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  26. def authenticateBasicPF[T](realm: String, authenticator: AuthenticatorPF[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  27. def authenticateBasicPFAsync[T](realm: String, authenticator: AsyncAuthenticatorPF[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  28. def authenticateOAuth2[T](realm: String, authenticator: Authenticator[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  29. def authenticateOAuth2Async[T](realm: String, authenticator: AsyncAuthenticator[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  30. def authenticateOAuth2PF[T](realm: String, authenticator: AuthenticatorPF[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  31. def authenticateOAuth2PFAsync[T](realm: String, authenticator: AsyncAuthenticatorPF[T]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  32. def authenticateOrRejectWithChallenge[C <: HttpCredentials, T](authenticator: (Option[C]) ⇒ Future[AuthenticationResult[T]])(implicit arg0: ClassTag[C]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  33. def authenticateOrRejectWithChallenge[T](authenticator: (Option[HttpCredentials]) ⇒ Future[AuthenticationResult[T]]): AuthenticationDirective[T]
    Definition Classes
    SecurityDirectives
  34. def authorize(check: (RequestContext) ⇒ Boolean): Directive0
    Definition Classes
    SecurityDirectives
  35. def authorize(check: ⇒ Boolean): Directive0
    Definition Classes
    SecurityDirectives
  36. def authorizeAsync(check: (RequestContext) ⇒ Future[Boolean]): Directive0
    Definition Classes
    SecurityDirectives
  37. def authorizeAsync(check: ⇒ Future[Boolean]): Directive0
    Definition Classes
    SecurityDirectives
  38. def cancelRejection(rejection: Rejection): Directive0
    Definition Classes
    BasicDirectives
  39. def cancelRejections(cancelFilter: (Rejection) ⇒ Boolean): Directive0
    Definition Classes
    BasicDirectives
  40. def cancelRejections(classes: Class[_]*): Directive0
    Definition Classes
    BasicDirectives
  41. def checkSameOrigin(allowed: Default): Directive0
    Definition Classes
    HeaderDirectives
  42. def clone(): AnyRef
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native() @HotSpotIntrinsicCandidate()
  43. def complete[T](status: StatusCode, headers: Seq[HttpHeader], v: ⇒ T)(implicit m: ToEntityMarshaller[T]): StandardRoute
    Definition Classes
    RouteDirectives
  44. def complete[T](status: StatusCode, v: ⇒ T)(implicit m: ToEntityMarshaller[T]): StandardRoute
    Definition Classes
    RouteDirectives
  45. def complete(m: ⇒ ToResponseMarshallable): StandardRoute
    Definition Classes
    RouteDirectives
  46. def completeOrRecoverWith(magnet: CompleteOrRecoverWithMagnet): Directive1[Throwable]
    Definition Classes
    FutureDirectives
  47. def completeWith[T](marshaller: ToResponseMarshaller[T])(inner: ((T) ⇒ Unit) ⇒ Unit): Route
    Definition Classes
    MarshallingDirectives
  48. def concat(routes: Route*): Route
    Definition Classes
    RouteConcatenation
  49. def conditional(eTag: Option[EntityTag], lastModified: Option[DateTime]): Directive0
    Definition Classes
    CacheConditionDirectives
  50. def conditional(eTag: EntityTag, lastModified: DateTime): Directive0
    Definition Classes
    CacheConditionDirectives
  51. def conditional(lastModified: DateTime): Directive0
    Definition Classes
    CacheConditionDirectives
  52. def conditional(eTag: EntityTag): Directive0
    Definition Classes
    CacheConditionDirectives
  53. def cookie(name: String): Directive1[HttpCookiePair]
    Definition Classes
    CookieDirectives
  54. def decodeRequest: Directive0
    Definition Classes
    CodingDirectives
  55. def decodeRequestWith(decoders: Decoder*): Directive0
    Definition Classes
    CodingDirectives
  56. def decodeRequestWith(decoder: Decoder): Directive0
    Definition Classes
    CodingDirectives
  57. def delete: Directive0
    Definition Classes
    MethodDirectives
  58. def deleteCookie(name: String, domain: String, path: String): Directive0
    Definition Classes
    CookieDirectives
  59. def deleteCookie(first: HttpCookie, more: HttpCookie*): Directive0
    Definition Classes
    CookieDirectives
  60. def encodeResponse: Directive0
    Definition Classes
    CodingDirectives
  61. def encodeResponseWith(first: Encoder, more: Encoder*): Directive0
    Definition Classes
    CodingDirectives
  62. def entity[T](um: FromRequestUnmarshaller[T]): Directive1[T]
    Definition Classes
    MarshallingDirectives
  63. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  64. def equals(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  65. def extract[T](f: (RequestContext) ⇒ T): Directive1[T]
    Definition Classes
    BasicDirectives
  66. def extractActorSystem: Directive1[ActorSystem]
    Definition Classes
    BasicDirectives
  67. def extractClientIP: Directive1[RemoteAddress]
    Definition Classes
    MiscDirectives
  68. def extractCredentials: Directive1[Option[HttpCredentials]]
    Definition Classes
    SecurityDirectives
  69. def extractDataBytes: Directive1[Source[ByteString, Any]]
    Definition Classes
    BasicDirectives
  70. def extractExecutionContext: Directive1[ExecutionContextExecutor]
    Definition Classes
    BasicDirectives
  71. def extractHost: Directive1[String]
    Definition Classes
    HostDirectives
  72. def extractLog: Directive1[LoggingAdapter]
    Definition Classes
    BasicDirectives
  73. def extractMatchedPath: Directive1[Path]
    Definition Classes
    BasicDirectives
  74. def extractMaterializer: Directive1[Materializer]
    Definition Classes
    BasicDirectives
  75. def extractMethod: Directive1[HttpMethod]
    Definition Classes
    MethodDirectives
  76. def extractOfferedWsProtocols: Directive1[Seq[String]]
    Definition Classes
    WebSocketDirectives
  77. def extractParserSettings: Directive1[ParserSettings]
    Definition Classes
    BasicDirectives
  78. def extractRequest: Directive1[HttpRequest]
    Definition Classes
    BasicDirectives
  79. def extractRequestContext: Directive1[RequestContext]
    Definition Classes
    BasicDirectives
  80. def extractRequestEntity: Directive1[RequestEntity]
    Definition Classes
    BasicDirectives
  81. def extractRequestTimeout: Directive1[Duration]
    Definition Classes
    TimeoutDirectives
  82. def extractScheme: Directive1[String]
    Definition Classes
    SchemeDirectives
  83. def extractSettings: Directive1[RoutingSettings]
    Definition Classes
    BasicDirectives
  84. def extractStrictEntity(timeout: FiniteDuration, maxBytes: Long): Directive1[Strict]
    Definition Classes
    BasicDirectives
  85. def extractStrictEntity(timeout: FiniteDuration): Directive1[Strict]
    Definition Classes
    BasicDirectives
  86. def extractUnmatchedPath: Directive1[Path]
    Definition Classes
    BasicDirectives
  87. def extractUri: Directive1[Uri]
    Definition Classes
    BasicDirectives
  88. def extractWebSocketUpgrade: Directive1[WebSocketUpgrade]
    Definition Classes
    WebSocketDirectives
  89. def failWith(error: Throwable): StandardRoute
    Definition Classes
    RouteDirectives
  90. def fileUpload(fieldName: String): Directive1[(FileInfo, Source[ByteString, Any])]
    Definition Classes
    FileUploadDirectives
  91. def fileUploadAll(fieldName: String): Directive1[Seq[(FileInfo, Source[ByteString, Any])]]
    Definition Classes
    FileUploadDirectives
    Annotations
    @ApiMayChange()
  92. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  93. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  94. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  95. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  96. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  97. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  98. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  99. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  100. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  101. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  102. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  103. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  104. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  105. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  106. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  107. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  108. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  109. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec): Directive[(Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  110. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec): Directive[(Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  111. def formField(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec): Directive[(Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  112. def formField(pdef1: FieldSpec, pdef2: FieldSpec): Directive[(Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  113. def formField(pdef1: FieldSpec): Directive[(Out)]
    Definition Classes
    FormFieldDirectivesInstances
  114. def formFieldMap: Directive1[Map[String, String]]
    Definition Classes
    FormFieldDirectives
  115. def formFieldMultiMap: Directive1[Map[String, List[String]]]
    Definition Classes
    FormFieldDirectives
  116. def formFieldSeq: Directive1[Seq[(String, String)]]
    Definition Classes
    FormFieldDirectives
  117. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  118. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  119. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  120. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  121. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  122. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  123. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  124. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  125. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  126. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  127. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  128. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  129. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  130. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  131. 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)]
    Definition Classes
    FormFieldDirectivesInstances
  132. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec, pdef7: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  133. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec, pdef6: FieldSpec): Directive[(Out, Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  134. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec, pdef5: FieldSpec): Directive[(Out, Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  135. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec, pdef4: FieldSpec): Directive[(Out, Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  136. def formFields(pdef1: FieldSpec, pdef2: FieldSpec, pdef3: FieldSpec): Directive[(Out, Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  137. def formFields(pdef1: FieldSpec, pdef2: FieldSpec): Directive[(Out, Out)]
    Definition Classes
    FormFieldDirectivesInstances
  138. def formFields(pdef1: FieldSpec): Directive[(Out)]
    Definition Classes
    FormFieldDirectivesInstances
  139. def get: Directive0
    Definition Classes
    MethodDirectives
  140. final def getClass(): Class[_]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  141. def getFromBrowseableDirectories(directories: String*)(implicit renderer: DirectoryRenderer, resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  142. def getFromBrowseableDirectory(directory: String)(implicit renderer: DirectoryRenderer, resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  143. def getFromDirectory(directoryName: String)(implicit resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  144. def getFromFile(file: File, contentType: ContentType): Route
    Definition Classes
    FileAndResourceDirectives
  145. def getFromFile(file: File)(implicit resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  146. def getFromFile(fileName: String)(implicit resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  147. def getFromResource(resourceName: String, contentType: ContentType, classLoader: ClassLoader): Route
    Definition Classes
    FileAndResourceDirectives
  148. def getFromResource(resourceName: String)(implicit resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  149. def getFromResourceDirectory(directoryName: String, classLoader: ClassLoader)(implicit resolver: ContentTypeResolver): Route
    Definition Classes
    FileAndResourceDirectives
  150. def handle(handler: PartialFunction[HttpRequest, Future[HttpResponse]], rejections: Seq[Rejection]): StandardRoute
    Definition Classes
    RouteDirectives
  151. def handle(handler: PartialFunction[HttpRequest, Future[HttpResponse]]): StandardRoute
    Definition Classes
    RouteDirectives
  152. def handle(handler: (HttpRequest) ⇒ Future[HttpResponse]): StandardRoute
    Definition Classes
    RouteDirectives
  153. def handleExceptions(handler: ExceptionHandler): Directive0
    Definition Classes
    ExecutionDirectives
  154. def handleRejections(handler: RejectionHandler): Directive0
    Definition Classes
    ExecutionDirectives
  155. def handleSync(handler: PartialFunction[HttpRequest, HttpResponse], rejections: Seq[Rejection]): StandardRoute
    Definition Classes
    RouteDirectives
  156. def handleSync(handler: PartialFunction[HttpRequest, HttpResponse]): StandardRoute
    Definition Classes
    RouteDirectives
  157. def handleSync(handler: (HttpRequest) ⇒ HttpResponse): StandardRoute
    Definition Classes
    RouteDirectives
  158. def handleWebSocketMessages(handler: Flow[Message, Message, Any]): Route
    Definition Classes
    WebSocketDirectives
  159. def handleWebSocketMessagesForOptionalProtocol(handler: Flow[Message, Message, Any], subprotocol: Option[String]): Route
    Definition Classes
    WebSocketDirectives
  160. def handleWebSocketMessagesForProtocol(handler: Flow[Message, Message, Any], subprotocol: String): Route
    Definition Classes
    WebSocketDirectives
  161. def handleWith[A, B](f: (A) ⇒ B)(implicit um: FromRequestUnmarshaller[A], m: ToResponseMarshaller[B]): Route
    Definition Classes
    MarshallingDirectives
  162. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  163. def head: Directive0
    Definition Classes
    MethodDirectives
  164. def headerValue[T](f: (HttpHeader) ⇒ Option[T]): Directive1[T]
    Definition Classes
    HeaderDirectives
  165. def headerValueByName(headerName: String): Directive1[String]
    Definition Classes
    HeaderDirectives
  166. def headerValueByType[T](magnet: HeaderMagnet[T]): Directive1[T]
    Definition Classes
    HeaderDirectives
  167. def headerValuePF[T](pf: PartialFunction[HttpHeader, T]): Directive1[T]
    Definition Classes
    HeaderDirectives
  168. def host(regex: Regex): Directive1[String]
    Definition Classes
    HostDirectives
  169. def host(predicate: (String) ⇒ Boolean): Directive0
    Definition Classes
    HostDirectives
  170. def host(hostNames: String*): Directive0
    Definition Classes
    HostDirectives
  171. def ignoreTrailingSlash: Directive0
    Definition Classes
    PathDirectives
  172. def instanceOf[T](implicit m: ToResponseMarshaller[T]): ToResponseMarshaller[T]
    Definition Classes
    MarshallingDirectives
  173. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  174. def listDirectoryContents(directories: String*)(implicit renderer: DirectoryRenderer): Route
    Definition Classes
    FileAndResourceDirectives
  175. def logRequest(magnet: LoggingMagnet[(HttpRequest) ⇒ Unit]): Directive0
    Definition Classes
    DebuggingDirectives
  176. def logRequestResult(magnet: LoggingMagnet[(HttpRequest) ⇒ (RouteResult) ⇒ Unit]): Directive0
    Definition Classes
    DebuggingDirectives
  177. def logResult(magnet: LoggingMagnet[(RouteResult) ⇒ Unit]): Directive0
    Definition Classes
    DebuggingDirectives
  178. def mapInnerRoute(f: (Route) ⇒ Route): Directive0
    Definition Classes
    BasicDirectives
  179. def mapRejections(f: (Seq[Rejection]) ⇒ Seq[Rejection]): Directive0
    Definition Classes
    BasicDirectives
  180. def mapRequest(f: (HttpRequest) ⇒ HttpRequest): Directive0
    Definition Classes
    BasicDirectives
  181. def mapRequestContext(f: (RequestContext) ⇒ RequestContext): Directive0
    Definition Classes
    BasicDirectives
  182. def mapResponse(f: (HttpResponse) ⇒ HttpResponse): Directive0
    Definition Classes
    BasicDirectives
  183. def mapResponseEntity(f: (ResponseEntity) ⇒ ResponseEntity): Directive0
    Definition Classes
    BasicDirectives
  184. def mapResponseHeaders(f: (Seq[HttpHeader]) ⇒ Seq[HttpHeader]): Directive0
    Definition Classes
    BasicDirectives
  185. def mapRouteResult(f: (RouteResult) ⇒ RouteResult): Directive0
    Definition Classes
    BasicDirectives
  186. def mapRouteResultFuture(f: (Future[RouteResult]) ⇒ Future[RouteResult]): Directive0
    Definition Classes
    BasicDirectives
  187. def mapRouteResultPF(f: PartialFunction[RouteResult, RouteResult]): Directive0
    Definition Classes
    BasicDirectives
  188. def mapRouteResultWith(f: (RouteResult) ⇒ Future[RouteResult]): Directive0
    Definition Classes
    BasicDirectives
  189. def mapRouteResultWithPF(f: PartialFunction[RouteResult, Future[RouteResult]]): Directive0
    Definition Classes
    BasicDirectives
  190. def mapSettings(f: (RoutingSettings) ⇒ RoutingSettings): Directive0
    Definition Classes
    BasicDirectives
  191. def mapUnmatchedPath(f: (Path) ⇒ Path): Directive0
    Definition Classes
    BasicDirectives
  192. def method(httpMethod: HttpMethod): Directive0
    Definition Classes
    MethodDirectives
  193. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  194. def not(self: PathMatcher[_]): PathMatcher0
    Definition Classes
    PathMatchers
  195. def nothingMatcher[L](implicit arg0: Tuple[L]): PathMatcher[L]
    Definition Classes
    PathMatchers
  196. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  197. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  198. def oauth2: Directive1[AuthProfile[U]]
  199. def onComplete[T](future: ⇒ Future[T]): Directive1[Try[T]]
    Definition Classes
    FutureDirectives
  200. def onCompleteWithBreaker[T](breaker: CircuitBreaker)(future: ⇒ Future[T]): Directive1[Try[T]]
    Definition Classes
    FutureDirectives
  201. def onSuccess(magnet: OnSuccessMagnet): Directive[Out]
    Definition Classes
    FutureDirectives
  202. def optionalAttribute[T](key: AttributeKey[T]): Directive1[Option[T]]
    Definition Classes
    AttributeDirectives
  203. def optionalCookie(name: String): Directive1[Option[HttpCookiePair]]
    Definition Classes
    CookieDirectives
  204. def optionalHeaderValue[T](f: (HttpHeader) ⇒ Option[T]): Directive1[Option[T]]
    Definition Classes
    HeaderDirectives
  205. def optionalHeaderValueByName(headerName: String): Directive1[Option[String]]
    Definition Classes
    HeaderDirectives
  206. def optionalHeaderValueByType[T <: HttpHeader](magnet: HeaderMagnet[T]): Directive1[Option[T]]
    Definition Classes
    HeaderDirectives
  207. def optionalHeaderValuePF[T](pf: PartialFunction[HttpHeader, T]): Directive1[Option[T]]
    Definition Classes
    HeaderDirectives
  208. def options: Directive0
    Definition Classes
    MethodDirectives
  209. def overrideMethodWithParameter(paramName: String): Directive0
    Definition Classes
    MethodDirectives
  210. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec, pdef21: ParamSpec, pdef22: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  211. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec, pdef21: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  212. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  213. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  214. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  215. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  216. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  217. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  218. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  219. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  220. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  221. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  222. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  223. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  224. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  225. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  226. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  227. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec): Directive[(Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  228. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec): Directive[(Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  229. def parameter(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec): Directive[(Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  230. def parameter(pdef1: ParamSpec, pdef2: ParamSpec): Directive[(Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  231. def parameter(pdef1: ParamSpec): Directive[(Out)]
    Definition Classes
    ParameterDirectivesInstances
  232. def parameterMap: Directive1[Map[String, String]]
    Definition Classes
    ParameterDirectives
  233. def parameterMultiMap: Directive1[Map[String, List[String]]]
    Definition Classes
    ParameterDirectives
  234. def parameterSeq: Directive1[Seq[(String, String)]]
    Definition Classes
    ParameterDirectives
  235. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec, pdef21: ParamSpec, pdef22: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  236. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec, pdef21: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  237. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec, pdef20: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  238. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec, pdef19: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  239. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec, pdef18: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  240. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec, pdef17: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  241. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec, pdef16: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  242. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec, pdef15: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  243. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec, pdef14: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  244. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec, pdef13: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  245. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec, pdef12: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  246. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec, pdef11: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  247. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec, pdef10: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  248. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec, pdef9: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  249. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec, pdef8: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  250. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec, pdef7: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  251. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec, pdef6: ParamSpec): Directive[(Out, Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  252. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec, pdef5: ParamSpec): Directive[(Out, Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  253. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec, pdef4: ParamSpec): Directive[(Out, Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  254. def parameters(pdef1: ParamSpec, pdef2: ParamSpec, pdef3: ParamSpec): Directive[(Out, Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  255. def parameters(pdef1: ParamSpec, pdef2: ParamSpec): Directive[(Out, Out)]
    Definition Classes
    ParameterDirectivesInstances
  256. def parameters(pdef1: ParamSpec): Directive[(Out)]
    Definition Classes
    ParameterDirectivesInstances
  257. def pass: Directive0
    Definition Classes
    BasicDirectives
  258. def patch: Directive0
    Definition Classes
    MethodDirectives
  259. def path[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  260. def pathEnd: Directive0
    Definition Classes
    PathDirectives
  261. def pathEndOrSingleSlash: Directive0
    Definition Classes
    PathDirectives
  262. def pathPrefix[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  263. def pathPrefixTest[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  264. def pathSingleSlash: Directive0
    Definition Classes
    PathDirectives
  265. def pathSuffix[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  266. def pathSuffixTest[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  267. def post: Directive0
    Definition Classes
    MethodDirectives
  268. def provide[T](value: T): Directive1[T]
    Definition Classes
    BasicDirectives
  269. def put: Directive0
    Definition Classes
    MethodDirectives
  270. def rawPathPrefix[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  271. def rawPathPrefixTest[L](pm: PathMatcher[L]): Directive[L]
    Definition Classes
    PathDirectives
  272. def recoverRejections(f: (Seq[Rejection]) ⇒ RouteResult): Directive0
    Definition Classes
    BasicDirectives
  273. def recoverRejectionsWith(f: (Seq[Rejection]) ⇒ Future[RouteResult]): Directive0
    Definition Classes
    BasicDirectives
  274. def redirect(uri: Uri, redirectionType: Redirection): StandardRoute
    Definition Classes
    RouteDirectives
  275. def redirectToNoTrailingSlashIfPresent(redirectionType: Redirection): Directive0
    Definition Classes
    PathDirectives
  276. def redirectToTrailingSlashIfMissing(redirectionType: Redirection): Directive0
    Definition Classes
    PathDirectives
  277. def reject(rejections: Rejection*): StandardRoute
    Definition Classes
    RouteDirectives
  278. def reject: StandardRoute
    Definition Classes
    RouteDirectives
  279. def rejectEmptyResponse: Directive0
    Definition Classes
    MiscDirectives
  280. def requestEncodedWith(encoding: HttpEncoding): Directive0
    Definition Classes
    CodingDirectives
  281. def requestEntityEmpty: Directive0
    Definition Classes
    MiscDirectives
  282. def requestEntityPresent: Directive0
    Definition Classes
    MiscDirectives
  283. def respondWithDefaultHeader(responseHeader: HttpHeader): Directive0
    Definition Classes
    RespondWithDirectives
  284. def respondWithDefaultHeaders(responseHeaders: HttpHeader*): Directive0
    Definition Classes
    RespondWithDirectives
  285. def respondWithDefaultHeaders(responseHeaders: Seq[HttpHeader]): Directive0
    Definition Classes
    RespondWithDirectives
  286. def respondWithHeader(responseHeader: HttpHeader): Directive0
    Definition Classes
    RespondWithDirectives
  287. def respondWithHeaders(responseHeaders: HttpHeader*): Directive0
    Definition Classes
    RespondWithDirectives
  288. def respondWithHeaders(responseHeaders: Seq[HttpHeader]): Directive0
    Definition Classes
    RespondWithDirectives
  289. def responseEncodingAccepted(encoding: HttpEncoding): Directive0
    Definition Classes
    CodingDirectives
  290. def scheme(name: String): Directive0
    Definition Classes
    SchemeDirectives
  291. def selectPreferredLanguage(first: Language, more: Language*): Directive1[Language]
    Definition Classes
    MiscDirectives
  292. def separateOnSlashes(string: String): PathMatcher0
    Definition Classes
    PathMatchers
  293. def setCookie(first: HttpCookie, more: HttpCookie*): Directive0
    Definition Classes
    CookieDirectives
  294. def storeUploadedFile(fieldName: String, destFn: (FileInfo) ⇒ File): Directive[(FileInfo, File)]
    Definition Classes
    FileUploadDirectives
    Annotations
    @ApiMayChange()
  295. def storeUploadedFiles(fieldName: String, destFn: (FileInfo) ⇒ File): Directive1[Seq[(FileInfo, File)]]
    Definition Classes
    FileUploadDirectives
    Annotations
    @ApiMayChange()
  296. final def synchronized[T0](arg0: ⇒ T0): T0
    Definition Classes
    AnyRef
  297. def textract[L](f: (RequestContext) ⇒ L)(implicit arg0: Tuple[L]): Directive[L]
    Definition Classes
    BasicDirectives
  298. def toStrictEntity(timeout: FiniteDuration, maxBytes: Long): Directive0
    Definition Classes
    BasicDirectives
  299. def toStrictEntity(timeout: FiniteDuration): Directive0
    Definition Classes
    BasicDirectives
  300. def toString(): String
    Definition Classes
    AnyRef → Any
  301. def tprovide[L](values: L)(implicit arg0: Tuple[L]): Directive[L]
    Definition Classes
    BasicDirectives
  302. def validate(check: ⇒ Boolean, errorMsg: String): Directive0
    Definition Classes
    MiscDirectives
  303. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  304. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... ) @native()
  305. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  306. def withExecutionContext(ec: ExecutionContextExecutor): Directive0
    Definition Classes
    BasicDirectives
  307. def withLog(log: LoggingAdapter): Directive0
    Definition Classes
    BasicDirectives
  308. def withMaterializer(materializer: Materializer): Directive0
    Definition Classes
    BasicDirectives
  309. def withPrecompressedMediaTypeSupport: Directive0
    Definition Classes
    CodingDirectives
  310. def withRangeSupport: Directive0
    Definition Classes
    RangeDirectives
  311. def withRequestTimeout(timeout: Duration, handler: Option[(HttpRequest) ⇒ HttpResponse]): Directive0
    Definition Classes
    TimeoutDirectives
  312. def withRequestTimeout(timeout: Duration, handler: (HttpRequest) ⇒ HttpResponse): Directive0
    Definition Classes
    TimeoutDirectives
  313. def withRequestTimeout(timeout: Duration): Directive0
    Definition Classes
    TimeoutDirectives
  314. def withRequestTimeoutResponse(handler: (HttpRequest) ⇒ HttpResponse): Directive0
    Definition Classes
    TimeoutDirectives
  315. def withSettings(settings: RoutingSettings): Directive0
    Definition Classes
    BasicDirectives
  316. def withSizeLimit(maxBytes: Long): Directive0
    Definition Classes
    MiscDirectives
  317. def withoutRequestTimeout: Directive0
    Definition Classes
    TimeoutDirectives
  318. def withoutSizeLimit: Directive0
    Definition Classes
    MiscDirectives

Deprecated Value Members

  1. def extractUpgradeToWebSocket: Directive1[UpgradeToWebSocket]
    Definition Classes
    WebSocketDirectives
    Annotations
    @deprecated
    Deprecated

    (Since version 10.2.0) use extractWebSocketUpgrade instead

  2. def finalize(): Unit
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] ) @Deprecated
    Deprecated
  3. def headerValueByName(headerName: Symbol): Directive1[String]
    Definition Classes
    HeaderDirectives
    Annotations
    @deprecated
    Deprecated

    (Since version 10.2.0) Use string argument version or headerValueByType, e.g. instead of headerValueByName('Referer) use headerValueByType(Referer)

  4. def optionalHeaderValueByName(headerName: Symbol): Directive1[Option[String]]
    Definition Classes
    HeaderDirectives
    Annotations
    @deprecated
    Deprecated

    (Since version 10.2.0) Use string argument version or headerValueByType, e.g. instead of optionalHeaderValueByName('Referer) use optionalHeaderValueByType(Referer)

Inherited from AutoInject

Inherited from Directives

Inherited from AttributeDirectives

Inherited from FramedEntityStreamingDirectives

Inherited from WebSocketDirectives

Inherited from SecurityDirectives

Inherited from SchemeDirectives

Inherited from RouteDirectives

Inherited from RespondWithDirectives

Inherited from RangeDirectives

Inherited from PathDirectives

Inherited from ImplicitPathMatcherConstruction

Inherited from PathMatchers

Inherited from TimeoutDirectives

Inherited from ParameterDirectives

Inherited from ParameterDirectivesInstances

Inherited from MiscDirectives

Inherited from MethodDirectives

Inherited from MarshallingDirectives

Inherited from HostDirectives

Inherited from HeaderDirectives

Inherited from FutureDirectives

Inherited from FormFieldDirectives

Inherited from ToNameReceptacleEnhancements

Inherited from FormFieldDirectivesInstances

Inherited from FileUploadDirectives

Inherited from FileAndResourceDirectives

Inherited from ExecutionDirectives

Inherited from CodingDirectives

Inherited from DebuggingDirectives

Inherited from CookieDirectives

Inherited from CacheConditionDirectives

Inherited from BasicDirectives

Inherited from RouteConcatenation

Inherited from AnyRef

Inherited from Any

Ungrouped