Interface ReactiveMultiIdEntityLoader<T>
-
- All Superinterfaces:
EntityLoader
,EntityMultiLoader<T>
,Loader
,MultiIdEntityLoader<T>
,MultiKeyLoader
public interface ReactiveMultiIdEntityLoader<T> extends 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, MultiIdLoadOptions options, EventSource session)
<K> CompletionStage<List<T>>
reactiveLoad(K[] ids, MultiIdLoadOptions options, EventSource session)
-
Methods inherited from interface org.hibernate.loader.ast.spi.EntityLoader
getLoadable
-
-
-
-
Method Detail
-
load
default <K> List<T> load(K[] ids, MultiIdLoadOptions options, EventSource session)
- Specified by:
load
in interfaceMultiIdEntityLoader<T>
-
reactiveLoad
<K> CompletionStage<List<T>> reactiveLoad(K[] ids, MultiIdLoadOptions options, EventSource session)
-
-