Trait

com.github.vonnagy.service.container.http.routing

RoutedEndpointsActor

Related Doc: package routing

Permalink

trait RoutedEndpointsActor extends RoutedEndpoints with Actor

Apply this trait to provide Http routing from a specific actor

Linear Supertypes
Actor, 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. RoutedEndpointsActor
  2. Actor
  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

Type Members

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

    Permalink
    Definition Classes
    PathMatchers
  2. type Receive = PartialFunction[Any, Unit]

    Permalink
    Definition Classes
    Actor
  3. class RouteConcatenation extends AnyRef

    Permalink
    Definition Classes
    RouteConcatenation

Abstract Value Members

  1. abstract def receive: akka.actor.Actor.Receive

    Permalink
    Definition Classes
    Actor
  2. abstract def route: Route

    Permalink
    Definition Classes
    RoutedEndpoints

Concrete 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 aroundPostRestart(reason: Throwable): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  22. def aroundPostStop(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  23. def aroundPreRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  24. def aroundPreStart(): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  25. def aroundReceive(receive: akka.actor.Actor.Receive, msg: Any): Unit

    Permalink
    Attributes
    protected[akka]
    Definition Classes
    Actor
  26. def as[T](implicit um: FromRequestUnmarshaller[T]): FromRequestUnmarshaller[T]

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    MiscDirectives
  37. def clientIP: Directive1[RemoteAddress]

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

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

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

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

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

    Permalink
    Definition Classes
    CacheConditionDirectives
  43. implicit val context: ActorContext

    Permalink
    Definition Classes
    Actor
  44. def cookie(name: String): Directive1[HttpCookie]

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

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

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

    Permalink
    Definition Classes
    EncodingDirectives
  48. def delete: Directive0

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

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

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

    Permalink
    Definition Classes
    ExecutionDirectives
  52. def dynamic: ByNameDirective0

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    MetaMarshallers
  65. def get: Directive0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    Any
  95. implicit def jsonFormats: Formats

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
  117. def noop: Directive0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    HeaderDirectives
  134. def options: Directive0

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

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

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

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

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

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

    Permalink
    Definition Classes
    ParameterDirectives
  141. def pass: Directive0

    Permalink
    Definition Classes
    BasicDirectives
  142. def patch: Directive0

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

    Permalink
    Definition Classes
    PathDirectives
  144. def pathEnd: Directive0

    Permalink
    Definition Classes
    PathDirectives
  145. def pathEndOrSingleSlash: Directive0

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

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

    Permalink
    Definition Classes
    PathDirectives
  148. def pathSingleSlash: Directive0

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

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

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

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

    Permalink
    Definition Classes
    DefaultMarshallers
  153. def post: Directive0

    Permalink
    Definition Classes
    MethodDirectives
  154. def postRestart(reason: Throwable): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  155. def postStop(): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  156. def preRestart(reason: Throwable, message: Option[Any]): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  157. def preStart(): Unit

    Permalink
    Definition Classes
    Actor
    Annotations
    @throws( classOf[java.lang.Exception] )
  158. def produce[T](marshaller: ToResponseMarshaller[T]): Directive[::[(T) ⇒ Unit, HNil]]

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

    Permalink
    Definition Classes
    BasicDirectives
  160. def put: Directive0

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

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

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

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

    Permalink
    Definition Classes
    ImplicitPathMatcherConstruction
  165. def registerRoute(): Unit

    Permalink

    When the actor is first created it will register itself with the Http service

    When the actor is first created it will register itself with the Http service

    Attributes
    protected
  166. def reject(rejections: Rejection*): StandardRoute

    Permalink
    Definition Classes
    RouteDirectives
  167. def reject: StandardRoute

    Permalink
    Definition Classes
    RouteDirectives
  168. def rejectEmptyResponse: Directive0

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

    Permalink
    Definition Classes
    EncodingDirectives
  170. def requestEntityEmpty: Directive0

    Permalink
    Definition Classes
    MiscDirectives
  171. def requestEntityPresent: Directive0

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

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

    Permalink
    Definition Classes
    MiscDirectives
  174. val respondJson: Directive0

    Permalink
    Definition Classes
    BaseDirectives
  175. val respondPlain: Directive0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    ImplicitPathMatcherConstruction
  191. implicit final val self: ActorRef

    Permalink
    Definition Classes
    Actor
  192. final def sender(): ActorRef

    Permalink
    Definition Classes
    Actor
  193. def separateOnSlashes(string: String): PathMatcher0

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

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

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

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

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

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

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

    Permalink
    Definition Classes
    ImplicitPathMatcherConstruction
  201. def supervisorStrategy: SupervisorStrategy

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

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

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

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

    Permalink
    Definition Classes
    MetaMarshallers
  206. def unhandled(message: Any): Unit

    Permalink
    Definition Classes
    Actor
  207. def unmatchedPath: Directive1[Path]

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

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

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

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

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

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  213. 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 Actor

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