@@ -288,7 +288,7 @@ public static <K, V> DataLoader<K, V> newMappedDataLoaderWithTry(MappedBatchLoad
288
288
*
289
289
* @return a new DataLoader
290
290
*/
291
- public static <K , V > DataLoader <K , V > newPublisherDataLoader (PublisherBatchLoader <K , V > batchLoadFunction ) {
291
+ public static <K , V > DataLoader <K , V > newPublisherDataLoader (BatchPublisher <K , V > batchLoadFunction ) {
292
292
return newPublisherDataLoader (batchLoadFunction , null );
293
293
}
294
294
@@ -302,7 +302,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoader(PublisherBatchLoade
302
302
*
303
303
* @return a new DataLoader
304
304
*/
305
- public static <K , V > DataLoader <K , V > newPublisherDataLoader (PublisherBatchLoader <K , V > batchLoadFunction , DataLoaderOptions options ) {
305
+ public static <K , V > DataLoader <K , V > newPublisherDataLoader (BatchPublisher <K , V > batchLoadFunction , DataLoaderOptions options ) {
306
306
return mkDataLoader (batchLoadFunction , options );
307
307
}
308
308
@@ -323,7 +323,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoader(PublisherBatchLoade
323
323
*
324
324
* @return a new DataLoader
325
325
*/
326
- public static <K , V > DataLoader <K , V > newPublisherDataLoaderWithTry (PublisherBatchLoader <K , Try <V >> batchLoadFunction ) {
326
+ public static <K , V > DataLoader <K , V > newPublisherDataLoaderWithTry (BatchPublisher <K , Try <V >> batchLoadFunction ) {
327
327
return newPublisherDataLoaderWithTry (batchLoadFunction , null );
328
328
}
329
329
@@ -341,7 +341,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoaderWithTry(PublisherBat
341
341
*
342
342
* @see #newDataLoaderWithTry(BatchLoader)
343
343
*/
344
- public static <K , V > DataLoader <K , V > newPublisherDataLoaderWithTry (PublisherBatchLoader <K , Try <V >> batchLoadFunction , DataLoaderOptions options ) {
344
+ public static <K , V > DataLoader <K , V > newPublisherDataLoaderWithTry (BatchPublisher <K , Try <V >> batchLoadFunction , DataLoaderOptions options ) {
345
345
return mkDataLoader (batchLoadFunction , options );
346
346
}
347
347
@@ -355,7 +355,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoaderWithTry(PublisherBat
355
355
*
356
356
* @return a new DataLoader
357
357
*/
358
- public static <K , V > DataLoader <K , V > newPublisherDataLoader (PublisherBatchLoaderWithContext <K , V > batchLoadFunction ) {
358
+ public static <K , V > DataLoader <K , V > newPublisherDataLoader (BatchPublisherWithContext <K , V > batchLoadFunction ) {
359
359
return newPublisherDataLoader (batchLoadFunction , null );
360
360
}
361
361
@@ -369,7 +369,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoader(PublisherBatchLoade
369
369
*
370
370
* @return a new DataLoader
371
371
*/
372
- public static <K , V > DataLoader <K , V > newPublisherDataLoader (PublisherBatchLoaderWithContext <K , V > batchLoadFunction , DataLoaderOptions options ) {
372
+ public static <K , V > DataLoader <K , V > newPublisherDataLoader (BatchPublisherWithContext <K , V > batchLoadFunction , DataLoaderOptions options ) {
373
373
return mkDataLoader (batchLoadFunction , options );
374
374
}
375
375
@@ -390,7 +390,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoader(PublisherBatchLoade
390
390
*
391
391
* @return a new DataLoader
392
392
*/
393
- public static <K , V > DataLoader <K , V > newPublisherDataLoaderWithTry (PublisherBatchLoaderWithContext <K , Try <V >> batchLoadFunction ) {
393
+ public static <K , V > DataLoader <K , V > newPublisherDataLoaderWithTry (BatchPublisherWithContext <K , Try <V >> batchLoadFunction ) {
394
394
return newPublisherDataLoaderWithTry (batchLoadFunction , null );
395
395
}
396
396
@@ -406,9 +406,9 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoaderWithTry(PublisherBat
406
406
*
407
407
* @return a new DataLoader
408
408
*
409
- * @see #newPublisherDataLoaderWithTry(PublisherBatchLoader )
409
+ * @see #newPublisherDataLoaderWithTry(BatchPublisher )
410
410
*/
411
- public static <K , V > DataLoader <K , V > newPublisherDataLoaderWithTry (PublisherBatchLoaderWithContext <K , Try <V >> batchLoadFunction , DataLoaderOptions options ) {
411
+ public static <K , V > DataLoader <K , V > newPublisherDataLoaderWithTry (BatchPublisherWithContext <K , Try <V >> batchLoadFunction , DataLoaderOptions options ) {
412
412
return mkDataLoader (batchLoadFunction , options );
413
413
}
414
414
@@ -422,7 +422,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoaderWithTry(PublisherBat
422
422
*
423
423
* @return a new DataLoader
424
424
*/
425
- public static <K , V > DataLoader <K , V > newMappedPublisherDataLoader (MappedPublisherBatchLoader <K , V > batchLoadFunction ) {
425
+ public static <K , V > DataLoader <K , V > newMappedPublisherDataLoader (MappedBatchPublisher <K , V > batchLoadFunction ) {
426
426
return newMappedPublisherDataLoader (batchLoadFunction , null );
427
427
}
428
428
@@ -436,7 +436,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoader(MappedPublish
436
436
*
437
437
* @return a new DataLoader
438
438
*/
439
- public static <K , V > DataLoader <K , V > newMappedPublisherDataLoader (MappedPublisherBatchLoader <K , V > batchLoadFunction , DataLoaderOptions options ) {
439
+ public static <K , V > DataLoader <K , V > newMappedPublisherDataLoader (MappedBatchPublisher <K , V > batchLoadFunction , DataLoaderOptions options ) {
440
440
return mkDataLoader (batchLoadFunction , options );
441
441
}
442
442
@@ -457,7 +457,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoader(MappedPublish
457
457
*
458
458
* @return a new DataLoader
459
459
*/
460
- public static <K , V > DataLoader <K , V > newMappedPublisherDataLoaderWithTry (MappedPublisherBatchLoader <K , Try <V >> batchLoadFunction ) {
460
+ public static <K , V > DataLoader <K , V > newMappedPublisherDataLoaderWithTry (MappedBatchPublisher <K , Try <V >> batchLoadFunction ) {
461
461
return newMappedPublisherDataLoaderWithTry (batchLoadFunction , null );
462
462
}
463
463
@@ -475,7 +475,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoaderWithTry(Mapped
475
475
*
476
476
* @see #newDataLoaderWithTry(BatchLoader)
477
477
*/
478
- public static <K , V > DataLoader <K , V > newMappedPublisherDataLoaderWithTry (MappedPublisherBatchLoader <K , Try <V >> batchLoadFunction , DataLoaderOptions options ) {
478
+ public static <K , V > DataLoader <K , V > newMappedPublisherDataLoaderWithTry (MappedBatchPublisher <K , Try <V >> batchLoadFunction , DataLoaderOptions options ) {
479
479
return mkDataLoader (batchLoadFunction , options );
480
480
}
481
481
@@ -489,7 +489,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoaderWithTry(Mapped
489
489
*
490
490
* @return a new DataLoader
491
491
*/
492
- public static <K , V > DataLoader <K , V > newMappedPublisherDataLoader (MappedPublisherBatchLoaderWithContext <K , V > batchLoadFunction ) {
492
+ public static <K , V > DataLoader <K , V > newMappedPublisherDataLoader (MappedBatchPublisherWithContext <K , V > batchLoadFunction ) {
493
493
return newMappedPublisherDataLoader (batchLoadFunction , null );
494
494
}
495
495
@@ -503,7 +503,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoader(MappedPublish
503
503
*
504
504
* @return a new DataLoader
505
505
*/
506
- public static <K , V > DataLoader <K , V > newMappedPublisherDataLoader (MappedPublisherBatchLoaderWithContext <K , V > batchLoadFunction , DataLoaderOptions options ) {
506
+ public static <K , V > DataLoader <K , V > newMappedPublisherDataLoader (MappedBatchPublisherWithContext <K , V > batchLoadFunction , DataLoaderOptions options ) {
507
507
return mkDataLoader (batchLoadFunction , options );
508
508
}
509
509
@@ -524,7 +524,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoader(MappedPublish
524
524
*
525
525
* @return a new DataLoader
526
526
*/
527
- public static <K , V > DataLoader <K , V > newMappedPublisherDataLoaderWithTry (MappedPublisherBatchLoaderWithContext <K , Try <V >> batchLoadFunction ) {
527
+ public static <K , V > DataLoader <K , V > newMappedPublisherDataLoaderWithTry (MappedBatchPublisherWithContext <K , Try <V >> batchLoadFunction ) {
528
528
return newMappedPublisherDataLoaderWithTry (batchLoadFunction , null );
529
529
}
530
530
@@ -540,9 +540,9 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoaderWithTry(Mapped
540
540
*
541
541
* @return a new DataLoader
542
542
*
543
- * @see #newMappedPublisherDataLoaderWithTry(MappedPublisherBatchLoader )
543
+ * @see #newMappedPublisherDataLoaderWithTry(MappedBatchPublisher )
544
544
*/
545
- public static <K , V > DataLoader <K , V > newMappedPublisherDataLoaderWithTry (MappedPublisherBatchLoaderWithContext <K , Try <V >> batchLoadFunction , DataLoaderOptions options ) {
545
+ public static <K , V > DataLoader <K , V > newMappedPublisherDataLoaderWithTry (MappedBatchPublisherWithContext <K , Try <V >> batchLoadFunction , DataLoaderOptions options ) {
546
546
return mkDataLoader (batchLoadFunction , options );
547
547
}
548
548
0 commit comments