Uses of Interface
ratpack.handling.RequestId.Generator
-
Packages that use RequestId.Generator Package Description ratpack.handling The handling of application requests. -
-
Uses of RequestId.Generator in ratpack.handling
Fields in ratpack.handling with type parameters of type RequestId.Generator Modifier and Type Field Description static com.google.common.reflect.TypeToken<RequestId.Generator>RequestId.Generator. TYPEA type token for this type.Methods in ratpack.handling that return RequestId.Generator Modifier and Type Method Description static RequestId.GeneratorRequestId.Generator. header(java.lang.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.GeneratorRequestId.Generator. header(java.lang.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.GeneratorRequestId.Generator. randomUuid()Generates IDs based of a random UUID.Methods in ratpack.handling with parameters of type RequestId.Generator Modifier and Type Method Description static RequestId.GeneratorRequestId.Generator. header(java.lang.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.
-