Package org.keycloak.utils
Class ServicesUtils
- java.lang.Object
-
- org.keycloak.utils.ServicesUtils
-
public class ServicesUtils extends Object
Deprecated.- DELETE once only used from within legacy datastore moduleUtility class for general helper methods used across the keycloak-services.
-
-
Constructor Summary
Constructors Constructor Description ServicesUtils()
Deprecated.
-
Method Summary
All Methods Static Methods Concrete Methods Deprecated Methods Modifier and Type Method Description static <T> Consumer<? super T>
consumeWithTimeBound(KeycloakSession session, long timeout, Consumer<T> func)
Deprecated.static <T,R>
Function<? super T,? extends Stream<? extends R>>timeBound(KeycloakSession session, long timeout, Function<T,? extends Stream<R>> func)
Deprecated.static <T,R>
Function<? super T,R>timeBoundOne(KeycloakSession session, long timeout, Function<T,R> func)
Deprecated.
-
-
-
Method Detail
-
timeBound
public static <T,R> Function<? super T,? extends Stream<? extends R>> timeBound(KeycloakSession session, long timeout, Function<T,? extends Stream<R>> func)
Deprecated.
-
timeBoundOne
public static <T,R> Function<? super T,R> timeBoundOne(KeycloakSession session, long timeout, Function<T,R> func)
Deprecated.
-
consumeWithTimeBound
public static <T> Consumer<? super T> consumeWithTimeBound(KeycloakSession session, long timeout, Consumer<T> func)
Deprecated.
-
-