We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 97c6def commit 74c9cceCopy full SHA for 74c9cce
README.md
@@ -266,7 +266,7 @@ and some of which may have failed. From that data loader can infer the right be
266
```java
267
DataLoader<String, User> dataLoader = DataLoader.newDataLoaderWithTry(new BatchLoader<String, Try<User>>() {
268
@Override
269
- public CompletionStage<List<Try<User>>> load(List<String> keys, BatchLoaderEnvironment environment) {
+ public CompletionStage<List<Try<User>>> load(List<String> keys) {
270
return CompletableFuture.supplyAsync(() -> {
271
List<Try<User>> users = new ArrayList<>();
272
for (String key : keys) {
0 commit comments