object Route
- Source
- Route.scala
Linear Supertypes
Ordering
- Alphabetic
- By Inheritance
Inherited
- Route
- AnyRef
- Any
- Hide All
- Show All
Visibility
- Public
- All
Value Members
-
def
apply(f: Route): Route
Helper for constructing a Route from a function literal.
-
def
asyncHandler(route: Route)(implicit routingSettings: RoutingSettings, parserSettings: ParserSettings, materializer: Materializer, routingLog: RoutingLog, executionContext: ExecutionContextExecutor = null, rejectionHandler: RejectionHandler = RejectionHandler.default, exceptionHandler: ExceptionHandler = null): (HttpRequest) ⇒ Future[HttpResponse]
Turns a
Route
into an async handler function. -
def
handlerFlow(route: Route)(implicit routingSettings: RoutingSettings, parserSettings: ParserSettings, materializer: Materializer, routingLog: RoutingLog, executionContext: ExecutionContextExecutor = null, rejectionHandler: RejectionHandler = RejectionHandler.default, exceptionHandler: ExceptionHandler = null): Flow[HttpRequest, HttpResponse, NotUsed]
Turns a
Route
into a server flow.Turns a
Route
into a server flow.This conversion is also implicitly available through RouteResult#route2HandlerFlow.
-
def
seal(route: Route)(implicit routingSettings: RoutingSettings = null, parserSettings: ParserSettings = null, rejectionHandler: RejectionHandler = RejectionHandler.default, exceptionHandler: ExceptionHandler = null): Route
"Seals" a route by wrapping it with default exception handling and rejection conversion.
"Seals" a route by wrapping it with default exception handling and rejection conversion.
A sealed route has these properties:
- The result of the route will always be a complete response, i.e. the result of the future is a
, never a failed future and never a rejected route. These will be already be handled using the implicitly given RejectionHandler and ExceptionHandler (or the default handlers if none are given or can be found implicitly).Success(RouteResult.Complete(response))
- Consequently, no route alternatives will be tried that were combined with this route
using the
on routes or the Directive.| operator on directives.~
- The result of the route will always be a complete response, i.e. the result of the future is a