Uses of Interface
ratpack.core.handling.RequestId.Generator
-
Packages that use RequestId.Generator Package Description ratpack.core.handling The handling of application requests. -
-
Uses of RequestId.Generator in ratpack.core.handling
Fields in ratpack.core.handling with type parameters of type RequestId.Generator Modifier and Type Field Description static com.google.common.reflect.TypeToken<RequestId.Generator>
RequestId.Generator. TYPE
A type token for this type.Methods in ratpack.core.handling that return RequestId.Generator Modifier and Type Method Description static RequestId.Generator
RequestId.Generator. header(CharSequence headerName)
Creates a generator that uses the value for the given header, falling back to arandomUuid()
generator if the header is not present.static RequestId.Generator
RequestId.Generator. header(CharSequence headerName, RequestId.Generator fallback)
Creates a generator that uses the value for the given header, using the given fallback generator if the header is not present.static RequestId.Generator
RequestId.Generator. randomUuid()
Generates IDs based of a random UUID.Methods in ratpack.core.handling with parameters of type RequestId.Generator Modifier and Type Method Description static RequestId.Generator
RequestId.Generator. header(CharSequence headerName, RequestId.Generator fallback)
Creates a generator that uses the value for the given header, using the given fallback generator if the header is not present.
-