Interface ReactiveMultiIdEntityLoader<T>
-
- All Superinterfaces:
org.hibernate.loader.ast.spi.EntityLoader,org.hibernate.loader.ast.spi.EntityMultiLoader<T>,org.hibernate.loader.ast.spi.Loader,org.hibernate.loader.ast.spi.MultiIdEntityLoader<T>,org.hibernate.loader.ast.spi.MultiKeyLoader
public interface ReactiveMultiIdEntityLoader<T> extends org.hibernate.loader.ast.spi.MultiIdEntityLoader<T>- See Also:
MultiIdEntityLoader
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default <K> List<T>load(K[] ids, org.hibernate.loader.ast.spi.MultiIdLoadOptions options, EventSource session)<K> CompletionStage<List<T>>reactiveLoad(K[] ids, org.hibernate.loader.ast.spi.MultiIdLoadOptions options, EventSource session)
-
-
-
Method Detail
-
load
default <K> List<T> load(K[] ids, org.hibernate.loader.ast.spi.MultiIdLoadOptions options, EventSource session)
- Specified by:
loadin interfaceorg.hibernate.loader.ast.spi.MultiIdEntityLoader<T>
-
reactiveLoad
<K> CompletionStage<List<T>> reactiveLoad(K[] ids, org.hibernate.loader.ast.spi.MultiIdLoadOptions options, EventSource session)
-
-