public interface VertxMappedBatchLoader<K,V>
extends org.dataloader.MappedBatchLoaderWithContext<K,V>
MappedBatchLoaderWithContext
that works well with Vert.x callback and Future
based APIs.Modifier and Type | Method and Description |
---|---|
static <K,V> VertxMappedBatchLoader<K,V> |
create(java.util.function.BiFunction<Set<K>,org.dataloader.BatchLoaderEnvironment,Future<Map<K,V>>> batchLoader)
Create a new batch loader that works well with
Future based APIs. |
static <K,V> VertxMappedBatchLoader<K,V> |
create(java.util.function.BiFunction<Set<K>,org.dataloader.BatchLoaderEnvironment,Future<Map<K,V>>> batchLoader,
java.util.function.Function<org.dataloader.BatchLoaderEnvironment,Context> contextProvider)
Like
create(BiFunction) , except the method uses the provided contextProvider instead of capturing the current one. |
static <K,V> VertxMappedBatchLoader<K,V> |
create(TriConsumer<Set<K>,org.dataloader.BatchLoaderEnvironment,Promise<Map<K,V>>> batchLoader)
Create a new batch loader that works well with callback based APIs.
|
static <K,V> VertxMappedBatchLoader<K,V> |
create(TriConsumer<Set<K>,org.dataloader.BatchLoaderEnvironment,Promise<Map<K,V>>> batchLoader,
java.util.function.Function<org.dataloader.BatchLoaderEnvironment,Context> contextProvider)
Like
create(TriConsumer) , except the method uses the provided contextProvider instead of capturing the current one. |
static <K,V> VertxMappedBatchLoader<K,V> create(TriConsumer<Set<K>,org.dataloader.BatchLoaderEnvironment,Promise<Map<K,V>>> batchLoader)
The provided batchLoader
will be invoked with the following arguments:
BatchLoaderEnvironment
Promise
that the implementor must complete after the data objects are loadedstatic <K,V> VertxMappedBatchLoader<K,V> create(TriConsumer<Set<K>,org.dataloader.BatchLoaderEnvironment,Promise<Map<K,V>>> batchLoader, java.util.function.Function<org.dataloader.BatchLoaderEnvironment,Context> contextProvider)
create(TriConsumer)
, except the method uses the provided contextProvider
instead of capturing the current one.static <K,V> VertxMappedBatchLoader<K,V> create(java.util.function.BiFunction<Set<K>,org.dataloader.BatchLoaderEnvironment,Future<Map<K,V>>> batchLoader)
Future
based APIs.
The provided batchLoader
will be invoked with the following arguments:
BatchLoaderEnvironment
static <K,V> VertxMappedBatchLoader<K,V> create(java.util.function.BiFunction<Set<K>,org.dataloader.BatchLoaderEnvironment,Future<Map<K,V>>> batchLoader, java.util.function.Function<org.dataloader.BatchLoaderEnvironment,Context> contextProvider)
create(BiFunction)
, except the method uses the provided contextProvider
instead of capturing the current one.Copyright © 2021 Eclipse. All rights reserved.