org.apache.pekko.http.scaladsl.server.directives
TimeoutDirectives
Companion trait TimeoutDirectives
object TimeoutDirectives extends TimeoutDirectives
- Source
- TimeoutDirectives.scala
- Grouped
- Alphabetic
- By Inheritance
- TimeoutDirectives
- TimeoutDirectives
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Timeout directives
- def extractRequestTimeout: Directive1[Duration]
Return the currently set request timeout.
Return the currently set request timeout.
Note that this may be changed in inner directives.
- Definition Classes
- TimeoutDirectives
- def withRequestTimeout(timeout: Duration, handler: Option[(HttpRequest) => HttpResponse]): Directive0
Tries to set a new request timeout and handler (if provided) at the same time.
Tries to set a new request timeout and handler (if provided) at the same time.
Due to the inherent raciness it is not guaranteed that the update will be applied before the previously set timeout has expired!
- handler
optional custom "timeout response" function. If left None, the default timeout HttpResponse will be used.
- Definition Classes
- TimeoutDirectives
- def withRequestTimeout(timeout: Duration, handler: (HttpRequest) => HttpResponse): Directive0
Tries to set a new request timeout and handler (if provided) at the same time.
Tries to set a new request timeout and handler (if provided) at the same time.
Due to the inherent raciness it is not guaranteed that the update will be applied before the previously set timeout has expired!
- handler
optional custom "timeout response" function. If left None, the default timeout HttpResponse will be used.
- Definition Classes
- TimeoutDirectives
- def withRequestTimeout(timeout: Duration): Directive0
Tries to set a new request timeout and handler (if provided) at the same time.
Tries to set a new request timeout and handler (if provided) at the same time.
Due to the inherent raciness it is not guaranteed that the update will be applied before the previously set timeout has expired!
- Definition Classes
- TimeoutDirectives
- def withRequestTimeoutResponse(handler: (HttpRequest) => HttpResponse): Directive0
Tries to set a new request timeout handler, which produces the timeout response for a given request.
Tries to set a new request timeout handler, which produces the timeout response for a given request. Note that the handler must produce the response synchronously and shouldn't block!
Due to the inherent raciness it is not guaranteed that the update will be applied before the previously set timeout has expired!
- Definition Classes
- TimeoutDirectives
- def withoutRequestTimeout: Directive0
- Definition Classes
- TimeoutDirectives