Class

com.github.vonnagy.service.container.http

BaseEndpoints

Related Doc: package http

Permalink

class BaseEndpoints extends RoutedEndpoints with CIDRDirectives

Linear Supertypes
CIDRDirectives, RoutedEndpoints, DefaultMarshallers, BasicMarshallers, MetaMarshallers, LowerPriorityImplicitMetaMarshallers, BaseDirectives, Directives, SecurityDirectives, SchemeDirectives, RouteDirectives, RespondWithDirectives, RangeDirectives, PathDirectives, ImplicitPathMatcherConstruction, PathMatchers, ParameterDirectives, MiscDirectives, MethodDirectives, MarshallingDirectives, HostDirectives, HeaderDirectives, FutureDirectives, FormFieldDirectives, ToNameReceptaclePimps, FileAndResourceDirectives, ExecutionDirectives, EncodingDirectives, DebuggingDirectives, CookieDirectives, ChunkingDirectives, CacheConditionDirectives, BasicDirectives, AnyParamDirectives, spray.routing.RouteConcatenation, AnyRef, Any
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. BaseEndpoints
  2. CIDRDirectives
  3. RoutedEndpoints
  4. DefaultMarshallers
  5. BasicMarshallers
  6. MetaMarshallers
  7. LowerPriorityImplicitMetaMarshallers
  8. BaseDirectives
  9. Directives
  10. SecurityDirectives
  11. SchemeDirectives
  12. RouteDirectives
  13. RespondWithDirectives
  14. RangeDirectives
  15. PathDirectives
  16. ImplicitPathMatcherConstruction
  17. PathMatchers
  18. ParameterDirectives
  19. MiscDirectives
  20. MethodDirectives
  21. MarshallingDirectives
  22. HostDirectives
  23. HeaderDirectives
  24. FutureDirectives
  25. FormFieldDirectives
  26. ToNameReceptaclePimps
  27. FileAndResourceDirectives
  28. ExecutionDirectives
  29. EncodingDirectives
  30. DebuggingDirectives
  31. CookieDirectives
  32. ChunkingDirectives
  33. CacheConditionDirectives
  34. BasicDirectives
  35. AnyParamDirectives
  36. RouteConcatenation
  37. AnyRef
  38. Any
  1. Hide All
  2. Show all
Visibility
  1. Public
  2. All

Instance Constructors

  1. new BaseEndpoints()(implicit system: ActorSystem, actorRefFactory: ActorRefFactory)

    Permalink

Type Members

  1. abstract class NumberMatcher[T] extends PathMatcher1[T]

    Permalink
    Definition Classes
    PathMatchers
  2. class RouteConcatenation extends AnyRef

    Permalink
    Definition Classes
    RouteConcatenation

Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. implicit val ByteArrayMarshaller: Marshaller[Array[Byte]]

    Permalink
    Definition Classes
    BasicMarshallers
  5. implicit val ByteStringMarshaller: Marshaller[ByteString]

    Permalink
    Definition Classes
    BasicMarshallers
  6. implicit val CharArrayMarshaller: Marshaller[Array[Char]]

    Permalink
    Definition Classes
    BasicMarshallers
  7. val DoubleNumber: PathMatcher1[Double]

    Permalink
    Definition Classes
    PathMatchers
  8. implicit val FormDataMarshaller: Marshaller[FormData]

    Permalink
    Definition Classes
    BasicMarshallers
  9. implicit val HttpDataMarshaller: Marshaller[HttpData]

    Permalink
    Definition Classes
    BasicMarshallers
  10. implicit val HttpEntityMarshaller: Marshaller[HttpEntity]

    Permalink
    Definition Classes
    BasicMarshallers
  11. val JavaUUID: PathMatcher1[UUID]

    Permalink
    Definition Classes
    PathMatchers
  12. val Neutral: PathMatcher0

    Permalink
    Definition Classes
    PathMatchers
  13. implicit val NodeSeqMarshaller: Marshaller[NodeSeq]

    Permalink
    Definition Classes
    BasicMarshallers
  14. val Segments: PathMatcher1[List[String]]

    Permalink
    Definition Classes
    PathMatchers
  15. implicit val StringMarshaller: Marshaller[String]

    Permalink
    Definition Classes
    BasicMarshallers
  16. implicit val ThrowableMarshaller: Marshaller[Throwable]

    Permalink
    Definition Classes
    BasicMarshallers
  17. object UUIDSerializer extends CustomSerializer[UUID] with Product with Serializable

    Permalink
    Definition Classes
    DefaultMarshallers
  18. def acceptableMediaTypes(mediaTypes: MediaType*): Directive0

    Permalink

    This directive can be used to only allow requests that have at least one of the accepted media types.

    This directive can be used to only allow requests that have at least one of the accepted media types. This looks at the requests Accept header and matches the values to the allowed ones.

    Definition Classes
    BaseDirectives
  19. def anyParam(apdm: AnyParamDefMagnet): Out

    Permalink
    Definition Classes
    AnyParamDirectives
  20. def anyParams(apdm: AnyParamDefMagnet): Out

    Permalink
    Definition Classes
    AnyParamDirectives
  21. def as[T](implicit um: FromRequestUnmarshaller[T]): FromRequestUnmarshaller[T]

    Permalink
    Definition Classes
    MarshallingDirectives
  22. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  23. def authenticate[T](magnet: AuthMagnet[T]): Directive1[T]

    Permalink
    Definition Classes
    SecurityDirectives
  24. def authorize(check: (RequestContext) ⇒ Boolean): Directive0

    Permalink
    Definition Classes
    SecurityDirectives
  25. def authorize(check: ⇒ Boolean): Directive0

    Permalink
    Definition Classes
    SecurityDirectives
  26. def autoChunk(csm: ChunkSizeMagnet): Directive0

    Permalink
    Definition Classes
    ChunkingDirectives
  27. def autoChunkFileBytes(csm: ChunkSizeMagnet): Directive0

    Permalink
    Definition Classes
    ChunkingDirectives
  28. def byteArrayMarshaller(contentType: ContentType): Marshaller[Array[Byte]]

    Permalink
    Definition Classes
    BasicMarshallers
  29. def byteStringMarshaller(contentType: ContentType): Marshaller[ByteString]

    Permalink
    Definition Classes
    BasicMarshallers
  30. def cancelAllRejections(cancelFilter: (Rejection) ⇒ Boolean): Directive0

    Permalink
    Definition Classes
    MiscDirectives
  31. def cancelRejection(rejection: Rejection): Directive0

    Permalink
    Definition Classes
    MiscDirectives
  32. def cidrFilter(allow: Seq[String], deny: Seq[String]): Directive0

    Permalink
    Definition Classes
    CIDRDirectives
  33. def clientIP: Directive1[RemoteAddress]

    Permalink
    Definition Classes
    MiscDirectives
  34. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  35. def complete: (⇒ ToResponseMarshallable) ⇒ StandardRoute

    Permalink
    Definition Classes
    RouteDirectives
  36. def compressResponse(magnet: CompressResponseMagnet): Directive0

    Permalink
    Definition Classes
    EncodingDirectives
  37. def compressResponseIfRequested(magnet: RefFactoryMagnet): Directive0

    Permalink
    Definition Classes
    EncodingDirectives
  38. def conditional(eTag: EntityTag, lastModified: DateTime): Directive0

    Permalink
    Definition Classes
    CacheConditionDirectives
  39. lazy val config: Config

    Permalink
  40. def cookie(name: String): Directive1[HttpCookie]

    Permalink
    Definition Classes
    CookieDirectives
  41. def decodeRequest(decoder: Decoder): Directive0

    Permalink
    Definition Classes
    EncodingDirectives
  42. def decompressRequest(first: Decoder, more: Decoder*): Directive0

    Permalink
    Definition Classes
    EncodingDirectives
  43. def decompressRequest(): Directive0

    Permalink
    Definition Classes
    EncodingDirectives
  44. def delete: Directive0

    Permalink
    Definition Classes
    MethodDirectives
  45. def deleteCookie(name: String, domain: String, path: String): Directive0

    Permalink
    Definition Classes
    CookieDirectives
  46. def deleteCookie(first: HttpCookie, more: HttpCookie*): Directive0

    Permalink
    Definition Classes
    CookieDirectives
  47. def detach(dm: DetachMagnet): Directive0

    Permalink
    Definition Classes
    ExecutionDirectives
  48. def dynamic: ByNameDirective0

    Permalink
    Definition Classes
    ExecutionDirectives
  49. def dynamicIf(enabled: Boolean): ByNameDirective0

    Permalink
    Definition Classes
    ExecutionDirectives
  50. implicit def eitherMarshaller[A, B](implicit ma: Marshaller[A], mb: Marshaller[B]): Marshaller[Either[A, B]]

    Permalink
    Definition Classes
    MetaMarshallers
  51. def encodeResponse(magnet: EncodeResponseMagnet): Directive0

    Permalink
    Definition Classes
    EncodingDirectives
  52. def entity[T](um: FromRequestUnmarshaller[T]): Directive1[T]

    Permalink
    Definition Classes
    MarshallingDirectives
  53. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  54. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  55. def extract[T](f: (RequestContext) ⇒ T): Directive1[T]

    Permalink
    Definition Classes
    BasicDirectives
  56. def failWith(error: Throwable): StandardRoute

    Permalink
    Definition Classes
    RouteDirectives
  57. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  58. def formField(fdm: FieldDefMagnet): Out

    Permalink
    Definition Classes
    FormFieldDirectives
  59. def formFields(fdm: FieldDefMagnet): Out

    Permalink
    Definition Classes
    FormFieldDirectives
  60. implicit def futureMarshaller[T](implicit m: Marshaller[T], ec: ExecutionContext): Marshaller[Future[T]]

    Permalink
    Definition Classes
    MetaMarshallers
  61. def get: Directive0

    Permalink
    Definition Classes
    MethodDirectives
  62. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  63. def getFromBrowseableDirectories(directories: String*)(implicit renderer: Marshaller[DirectoryListing], settings: RoutingSettings, resolver: ContentTypeResolver, refFactory: ActorRefFactory, log: LoggingContext): Route

    Permalink
    Definition Classes
    FileAndResourceDirectives
  64. def getFromBrowseableDirectory(directory: String)(implicit renderer: Marshaller[DirectoryListing], settings: RoutingSettings, resolver: ContentTypeResolver, refFactory: ActorRefFactory, log: LoggingContext): Route

    Permalink
    Definition Classes
    FileAndResourceDirectives
  65. def getFromDirectory(directoryName: String)(implicit settings: RoutingSettings, resolver: ContentTypeResolver, refFactory: ActorRefFactory, log: LoggingContext): Route

    Permalink
    Definition Classes
    FileAndResourceDirectives
  66. def getFromFile(file: File, contentType: ContentType)(implicit settings: RoutingSettings, refFactory: ActorRefFactory): Route

    Permalink
    Definition Classes
    FileAndResourceDirectives
  67. def getFromFile(file: File)(implicit settings: RoutingSettings, resolver: ContentTypeResolver, refFactory: ActorRefFactory): Route

    Permalink
    Definition Classes
    FileAndResourceDirectives
  68. def getFromFile(fileName: String)(implicit settings: RoutingSettings, resolver: ContentTypeResolver, refFactory: ActorRefFactory): Route

    Permalink
    Definition Classes
    FileAndResourceDirectives
  69. def getFromResource(resourceName: String, contentType: ContentType)(implicit refFactory: ActorRefFactory): Route

    Permalink
    Definition Classes
    FileAndResourceDirectives
  70. def getFromResource(resourceName: String)(implicit resolver: ContentTypeResolver, refFactory: ActorRefFactory): Route

    Permalink
    Definition Classes
    FileAndResourceDirectives
  71. def getFromResourceDirectory(directoryName: String)(implicit resolver: ContentTypeResolver, refFactory: ActorRefFactory, log: LoggingContext): Route

    Permalink
    Definition Classes
    FileAndResourceDirectives
  72. def handleExceptions(handler: ExceptionHandler): Directive0

    Permalink
    Definition Classes
    ExecutionDirectives
  73. def handleRejections(handler: RejectionHandler): Directive0

    Permalink
    Definition Classes
    ExecutionDirectives
  74. def handleWith[A, B](f: (A) ⇒ B)(implicit um: FromRequestUnmarshaller[A], m: ToResponseMarshaller[B]): Route

    Permalink
    Definition Classes
    MarshallingDirectives
  75. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  76. def head: Directive0

    Permalink
    Definition Classes
    MethodDirectives
  77. def headerValue[T](f: (HttpHeader) ⇒ Option[T]): Directive1[T]

    Permalink
    Definition Classes
    HeaderDirectives
  78. def headerValueByName(headerName: String): Directive1[String]

    Permalink
    Definition Classes
    HeaderDirectives
  79. def headerValueByName(headerName: Symbol): Directive1[String]

    Permalink
    Definition Classes
    HeaderDirectives
  80. def headerValueByType[T <: HttpHeader](magnet: ClassMagnet[T]): Directive1[T]

    Permalink
    Definition Classes
    HeaderDirectives
  81. def headerValuePF[T](pf: PartialFunction[HttpHeader, T]): Directive1[T]

    Permalink
    Definition Classes
    HeaderDirectives
  82. def hextract[L <: HList](f: (RequestContext) ⇒ L): Directive[L]

    Permalink
    Definition Classes
    BasicDirectives
  83. def host(regex: Regex): Directive1[String]

    Permalink
    Definition Classes
    HostDirectives
  84. def host(predicate: (String) ⇒ Boolean): Directive0

    Permalink
    Definition Classes
    HostDirectives
  85. def host(hostNames: String*): Directive0

    Permalink
    Definition Classes
    HostDirectives
  86. def hostName: Directive1[String]

    Permalink
    Definition Classes
    HostDirectives
  87. def hprovide[L <: HList](values: L): Directive[L]

    Permalink
    Definition Classes
    BasicDirectives
  88. def httpDataMarshaller(contentType: ContentType): Marshaller[HttpData]

    Permalink
    Definition Classes
    BasicMarshallers
  89. def instanceOf[T](implicit m: ToResponseMarshaller[T]): ToResponseMarshaller[T]

    Permalink
    Definition Classes
    MarshallingDirectives
  90. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  91. implicit def jsonFormats: Formats

    Permalink
    Definition Classes
    DefaultMarshallers
  92. def jsonMarshaller[T <: AnyRef]: Marshaller[AnyRef]

    Permalink
    Definition Classes
    DefaultMarshallers
  93. def jsonUnmarshaller[T](implicit arg0: Manifest[T]): Unmarshaller[T]

    Permalink
    Definition Classes
    DefaultMarshallers
  94. def jsonpWithParameter(parameterName: String): Directive0

    Permalink
    Definition Classes
    MiscDirectives
  95. def liftJson(implicit fmt: Formats): LiftJsonSupport

    Permalink
    Definition Classes
    DefaultMarshallers
  96. def listDirectoryContents(directories: String*)(implicit renderer: Marshaller[DirectoryListing], refFactory: ActorRefFactory, log: LoggingContext): Route

    Permalink
    Definition Classes
    FileAndResourceDirectives
  97. def logRequest(magnet: LoggingMagnet[(HttpRequest) ⇒ Unit]): Directive0

    Permalink
    Definition Classes
    DebuggingDirectives
  98. def logRequestResponse(magnet: LoggingMagnet[(HttpRequest) ⇒ (Any) ⇒ Unit]): Directive0

    Permalink
    Definition Classes
    DebuggingDirectives
  99. def logResponse(magnet: LoggingMagnet[(Any) ⇒ Unit]): Directive0

    Permalink
    Definition Classes
    DebuggingDirectives
  100. implicit def mMarshaller[M[_], T](implicit mm: MarshallerM[M], mt: Marshaller[T]): Marshaller[M[T]]

    Permalink
    Definition Classes
    LowerPriorityImplicitMetaMarshallers
  101. def mapHttpResponse(f: (HttpResponse) ⇒ HttpResponse): Directive0

    Permalink
    Definition Classes
    BasicDirectives
  102. def mapHttpResponseEntity(f: (HttpEntity) ⇒ HttpEntity): Directive0

    Permalink
    Definition Classes
    BasicDirectives
  103. def mapHttpResponseHeaders(f: (List[HttpHeader]) ⇒ List[HttpHeader]): Directive0

    Permalink
    Definition Classes
    BasicDirectives
  104. def mapHttpResponsePart(f: (HttpResponsePart) ⇒ HttpResponsePart): Directive0

    Permalink
    Definition Classes
    BasicDirectives
  105. def mapInnerRoute(f: (Route) ⇒ Route): Directive0

    Permalink
    Definition Classes
    BasicDirectives
  106. def mapRejections(f: (List[Rejection]) ⇒ List[Rejection]): Directive0

    Permalink
    Definition Classes
    BasicDirectives
  107. def mapRequest(f: (HttpRequest) ⇒ HttpRequest): Directive0

    Permalink
    Definition Classes
    BasicDirectives
  108. def mapRequestContext(f: (RequestContext) ⇒ RequestContext): Directive0

    Permalink
    Definition Classes
    BasicDirectives
  109. def mapRouteResponse(f: (Any) ⇒ Any): Directive0

    Permalink
    Definition Classes
    BasicDirectives
  110. def mapRouteResponsePF(f: PartialFunction[Any, Any]): Directive0

    Permalink
    Definition Classes
    BasicDirectives
  111. def method(httpMethod: HttpMethod): Directive0

    Permalink
    Definition Classes
    MethodDirectives
  112. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  113. def noop: Directive0

    Permalink
    Definition Classes
    BasicDirectives
  114. def nothingMatcher[L <: HList]: PathMatcher[L]

    Permalink
    Definition Classes
    PathMatchers
  115. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  116. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  117. def ofType[T <: Rejection](implicit arg0: ClassTag[T]): (Rejection) ⇒ Boolean

    Permalink
    Definition Classes
    MiscDirectives
  118. def ofTypes(classes: Class[_]*): (Rejection) ⇒ Boolean

    Permalink
    Definition Classes
    MiscDirectives
  119. def onComplete[T](magnet: OnCompleteFutureMagnet[T]): Directive1[Try[T]]

    Permalink
    Definition Classes
    FutureDirectives
  120. def onFailure(magnet: OnFailureFutureMagnet): Directive1[Throwable]

    Permalink
    Definition Classes
    FutureDirectives
  121. def onSuccess(magnet: OnSuccessFutureMagnet): Directive[Out]

    Permalink
    Definition Classes
    FutureDirectives
  122. implicit def optionMarshaller[T](implicit m: Marshaller[T]): Marshaller[Option[T]]

    Permalink
    Definition Classes
    MetaMarshallers
  123. def optionalAuthenticate[T](magnet: AuthMagnet[T]): Directive1[Option[T]]

    Permalink
    Definition Classes
    SecurityDirectives
  124. def optionalCookie(name: String): Directive1[Option[HttpCookie]]

    Permalink
    Definition Classes
    CookieDirectives
  125. def optionalHeaderValue[T](f: (HttpHeader) ⇒ Option[T]): Directive1[Option[T]]

    Permalink
    Definition Classes
    HeaderDirectives
  126. def optionalHeaderValueByName(headerName: String): Directive1[Option[String]]

    Permalink
    Definition Classes
    HeaderDirectives
  127. def optionalHeaderValueByName(headerName: Symbol): Directive1[Option[String]]

    Permalink
    Definition Classes
    HeaderDirectives
  128. def optionalHeaderValueByType[T <: HttpHeader](magnet: ClassMagnet[T]): Directive1[Option[T]]

    Permalink
    Definition Classes
    HeaderDirectives
  129. def optionalHeaderValuePF[T](pf: PartialFunction[HttpHeader, T]): Directive1[Option[T]]

    Permalink
    Definition Classes
    HeaderDirectives
  130. def options: Directive0

    Permalink
    Definition Classes
    MethodDirectives
  131. def overrideMethodWithParameter(paramName: String): Directive0

    Permalink
    Definition Classes
    MethodDirectives
  132. def parameter(pdm: ParamDefMagnet): Out

    Permalink
    Definition Classes
    ParameterDirectives
  133. def parameterMap: Directive1[Map[String, String]]

    Permalink
    Definition Classes
    ParameterDirectives
  134. def parameterMultiMap: Directive1[Map[String, List[String]]]

    Permalink
    Definition Classes
    ParameterDirectives
  135. def parameterSeq: Directive1[Seq[(String, String)]]

    Permalink
    Definition Classes
    ParameterDirectives
  136. def parameters(pdm: ParamDefMagnet): Out

    Permalink
    Definition Classes
    ParameterDirectives
  137. def pass: Directive0

    Permalink
    Definition Classes
    BasicDirectives
  138. def patch: Directive0

    Permalink
    Definition Classes
    MethodDirectives
  139. def path[L <: HList](pm: PathMatcher[L]): Directive[L]

    Permalink
    Definition Classes
    PathDirectives
  140. def pathEnd: Directive0

    Permalink
    Definition Classes
    PathDirectives
  141. def pathEndOrSingleSlash: Directive0

    Permalink
    Definition Classes
    PathDirectives
  142. def pathPrefix[L <: HList](pm: PathMatcher[L]): Directive[L]

    Permalink
    Definition Classes
    PathDirectives
  143. def pathPrefixTest[L <: HList](pm: PathMatcher[L]): Directive[L]

    Permalink
    Definition Classes
    PathDirectives
  144. def pathSingleSlash: Directive0

    Permalink
    Definition Classes
    PathDirectives
  145. def pathSuffix[L <: HList](pm: PathMatcher[L]): Directive[L]

    Permalink
    Definition Classes
    PathDirectives
  146. def pathSuffixTest[L <: HList](pm: PathMatcher[L]): Directive[L]

    Permalink
    Definition Classes
    PathDirectives
  147. implicit def pimpRouteWithConcatenation(route: Route): RouteConcatenation

    Permalink
    Definition Classes
    RouteConcatenation
  148. def plainMarshaller[T]: Marshaller[T]

    Permalink
    Definition Classes
    DefaultMarshallers
  149. def post: Directive0

    Permalink
    Definition Classes
    MethodDirectives
  150. def produce[T](marshaller: ToResponseMarshaller[T]): Directive[::[(T) ⇒ Unit, HNil]]

    Permalink
    Definition Classes
    MarshallingDirectives
  151. def provide[T](value: T): Directive1[T]

    Permalink
    Definition Classes
    BasicDirectives
  152. def put: Directive0

    Permalink
    Definition Classes
    MethodDirectives
  153. def rawPathPrefix[L <: HList](pm: PathMatcher[L]): Directive[L]

    Permalink
    Definition Classes
    PathDirectives
  154. def rawPathPrefixTest[L <: HList](pm: PathMatcher[L]): Directive[L]

    Permalink
    Definition Classes
    PathDirectives
  155. def redirect(uri: Uri, redirectionType: Redirection): StandardRoute

    Permalink
    Definition Classes
    RouteDirectives
  156. implicit def regex2PathMatcher(regex: Regex): PathMatcher1[String]

    Permalink
    Definition Classes
    ImplicitPathMatcherConstruction
  157. def reject(rejections: Rejection*): StandardRoute

    Permalink
    Definition Classes
    RouteDirectives
  158. def reject: StandardRoute

    Permalink
    Definition Classes
    RouteDirectives
  159. def rejectEmptyResponse: Directive0

    Permalink
    Definition Classes
    MiscDirectives
  160. def requestEncodedWith(encoding: HttpEncoding): Directive0

    Permalink
    Definition Classes
    EncodingDirectives
  161. def requestEntityEmpty: Directive0

    Permalink
    Definition Classes
    MiscDirectives
  162. def requestEntityPresent: Directive0

    Permalink
    Definition Classes
    MiscDirectives
  163. def requestInstance: Directive1[HttpRequest]

    Permalink
    Definition Classes
    MiscDirectives
  164. def requestUri: Directive1[Uri]

    Permalink
    Definition Classes
    MiscDirectives
  165. val respondJson: Directive0

    Permalink
    Definition Classes
    BaseDirectives
  166. val respondPlain: Directive0

    Permalink
    Definition Classes
    BaseDirectives
  167. def respondWithHeader(responseHeader: HttpHeader): Directive0

    Permalink
    Definition Classes
    RespondWithDirectives
  168. def respondWithHeaders(responseHeaders: List[HttpHeader]): Directive0

    Permalink
    Definition Classes
    RespondWithDirectives
  169. def respondWithHeaders(responseHeaders: HttpHeader*): Directive0

    Permalink
    Definition Classes
    RespondWithDirectives
  170. def respondWithLastModifiedHeader(timestamp: Long): Directive0

    Permalink
    Definition Classes
    FileAndResourceDirectives
  171. def respondWithMediaType(mediaType: MediaType): Directive0

    Permalink
    Definition Classes
    RespondWithDirectives
  172. def respondWithSingletonHeader(responseHeader: HttpHeader): Directive0

    Permalink
    Definition Classes
    RespondWithDirectives
  173. def respondWithSingletonHeaders(responseHeaders: List[HttpHeader]): Directive0

    Permalink
    Definition Classes
    RespondWithDirectives
  174. def respondWithSingletonHeaders(responseHeaders: HttpHeader*): Directive0

    Permalink
    Definition Classes
    RespondWithDirectives
  175. def respondWithStatus(responseStatus: StatusCode): Directive0

    Permalink
    Definition Classes
    RespondWithDirectives
  176. def responseEncodingAccepted(encoding: HttpEncoding): Directive0

    Permalink
    Definition Classes
    EncodingDirectives
  177. def rewriteUnmatchedPath(f: (Path) ⇒ Path): Directive0

    Permalink
    Definition Classes
    MiscDirectives
  178. val route: Route

    Permalink
    Definition Classes
    BaseEndpointsRoutedEndpoints
  179. def routeRouteResponse(f: PartialFunction[Any, Route]): Directive0

    Permalink
    Definition Classes
    BasicDirectives
  180. def scheme(schm: String): Directive0

    Permalink
    Definition Classes
    SchemeDirectives
  181. def schemeName: Directive1[String]

    Permalink
    Definition Classes
    SchemeDirectives
  182. implicit def segmentStringToPathMatcher(segment: String): PathMatcher0

    Permalink
    Definition Classes
    ImplicitPathMatcherConstruction
  183. def separateOnSlashes(string: String): PathMatcher0

    Permalink
    Definition Classes
    PathMatchers
  184. def setCookie(first: HttpCookie, more: HttpCookie*): Directive0

    Permalink
    Definition Classes
    CookieDirectives
  185. implicit def streamMarshaller[T](implicit marshaller: Marshaller[T], refFactory: ActorRefFactory): Marshaller[Stream[T]]

    Permalink
    Definition Classes
    MetaMarshallers
  186. implicit def string2NR(string: String): NameReceptacle[String]

    Permalink
    Definition Classes
    ToNameReceptaclePimps
  187. implicit def stringExtractionPair2PathMatcher[T](tuple: (String, T)): PathMatcher1[T]

    Permalink
    Definition Classes
    ImplicitPathMatcherConstruction
  188. def stringMarshaller(contentType: ContentType, more: ContentType*): Marshaller[String]

    Permalink
    Definition Classes
    BasicMarshallers
  189. def stringMarshaller(charset: HttpCharset, more: HttpCharset*): Marshaller[String]

    Permalink
    Definition Classes
    BasicMarshallers
  190. implicit def stringOptionNameReceptacle2PathMatcher(nr: NameReceptacle[Option[String]]): PathMatcher0

    Permalink
    Definition Classes
    ImplicitPathMatcherConstruction
  191. implicit def symbol2NR(symbol: Symbol): NameReceptacle[String]

    Permalink
    Definition Classes
    ToNameReceptaclePimps
  192. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  193. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  194. implicit def tryMarshaller[T](implicit m: Marshaller[T]): Marshaller[Try[T]]

    Permalink
    Definition Classes
    MetaMarshallers
  195. def unmatchedPath: Directive1[Path]

    Permalink
    Definition Classes
    MiscDirectives
  196. def validate(check: ⇒ Boolean, errorMsg: String): Directive0

    Permalink
    Definition Classes
    MiscDirectives
  197. implicit def valueMap2PathMatcher[T](valueMap: Map[String, T]): PathMatcher1[T]

    Permalink
    Definition Classes
    ImplicitPathMatcherConstruction
  198. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  199. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  200. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  201. def withRangeSupport(m: WithRangeSupportMagnet): Directive0

    Permalink
    Definition Classes
    RangeDirectives

Deprecated Value Members

  1. def PathElement: Segment.type

    Permalink
    Definition Classes
    PathMatchers
    Annotations
    @deprecated
    Deprecated

    (Since version 1.0-M8/1.1-M8) Use Segment instead

Inherited from CIDRDirectives

Inherited from RoutedEndpoints

Inherited from DefaultMarshallers

Inherited from BasicMarshallers

Inherited from MetaMarshallers

Inherited from LowerPriorityImplicitMetaMarshallers

Inherited from BaseDirectives

Inherited from Directives

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 ParameterDirectives

Inherited from MiscDirectives

Inherited from MethodDirectives

Inherited from MarshallingDirectives

Inherited from HostDirectives

Inherited from HeaderDirectives

Inherited from FutureDirectives

Inherited from FormFieldDirectives

Inherited from ToNameReceptaclePimps

Inherited from FileAndResourceDirectives

Inherited from ExecutionDirectives

Inherited from EncodingDirectives

Inherited from DebuggingDirectives

Inherited from CookieDirectives

Inherited from ChunkingDirectives

Inherited from CacheConditionDirectives

Inherited from BasicDirectives

Inherited from AnyParamDirectives

Inherited from spray.routing.RouteConcatenation

Inherited from AnyRef

Inherited from Any

Ungrouped