object TimeoutDirectives extends TimeoutDirectives

Ordering
  1. Grouped
  2. Alphabetic
  3. By Inheritance
Inherited
  1. TimeoutDirectives
  2. TimeoutDirectives
  3. AnyRef
  4. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Timeout directives

  1. 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
  2. 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
  3. 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
  4. 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
  5. 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
  6. def withoutRequestTimeout: Directive0

    Definition Classes
    TimeoutDirectives