Uses of Class
org.forgerock.util.LazySupplier
-
Packages that use LazySupplier Package Description org.forgerock.http.protocol Models and manages elements of the Hypertext Transfer Protocol.org.forgerock.util Provides common interfaces and classes. -
-
Uses of LazySupplier in org.forgerock.http.protocol
Methods in org.forgerock.http.protocol that return LazySupplier Modifier and Type Method Description LazySupplier<Request,IOException>
Request. lazyCopy()
Returns aSupplier
that will lazily copy the request object the first time it is accessed. -
Uses of LazySupplier in org.forgerock.util
Methods in org.forgerock.util that return LazySupplier Modifier and Type Method Description static <T,E extends Exception>
LazySupplier<T,E>LazySupplier. lazy(Supplier<T,E> supplier)
Constructs a supplier that will lazily compute and cache a value from the given supplier.
-