@@ -288,7 +288,7 @@ public static <K, V> DataLoader<K, V> newMappedDataLoaderWithTry(MappedBatchLoad
288288 *
289289 * @return a new DataLoader
290290 */
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) {
292292 return newPublisherDataLoader(batchLoadFunction, null);
293293 }
294294
@@ -302,7 +302,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoader(PublisherBatchLoade
302302 *
303303 * @return a new DataLoader
304304 */
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) {
306306 return mkDataLoader(batchLoadFunction, options);
307307 }
308308
@@ -323,7 +323,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoader(PublisherBatchLoade
323323 *
324324 * @return a new DataLoader
325325 */
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) {
327327 return newPublisherDataLoaderWithTry(batchLoadFunction, null);
328328 }
329329
@@ -341,7 +341,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoaderWithTry(PublisherBat
341341 *
342342 * @see #newDataLoaderWithTry(BatchLoader)
343343 */
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) {
345345 return mkDataLoader(batchLoadFunction, options);
346346 }
347347
@@ -355,7 +355,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoaderWithTry(PublisherBat
355355 *
356356 * @return a new DataLoader
357357 */
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) {
359359 return newPublisherDataLoader(batchLoadFunction, null);
360360 }
361361
@@ -369,7 +369,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoader(PublisherBatchLoade
369369 *
370370 * @return a new DataLoader
371371 */
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) {
373373 return mkDataLoader(batchLoadFunction, options);
374374 }
375375
@@ -390,7 +390,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoader(PublisherBatchLoade
390390 *
391391 * @return a new DataLoader
392392 */
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) {
394394 return newPublisherDataLoaderWithTry(batchLoadFunction, null);
395395 }
396396
@@ -406,9 +406,9 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoaderWithTry(PublisherBat
406406 *
407407 * @return a new DataLoader
408408 *
409- * @see #newPublisherDataLoaderWithTry(PublisherBatchLoader )
409+ * @see #newPublisherDataLoaderWithTry(BatchPublisher )
410410 */
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) {
412412 return mkDataLoader(batchLoadFunction, options);
413413 }
414414
@@ -422,7 +422,7 @@ public static <K, V> DataLoader<K, V> newPublisherDataLoaderWithTry(PublisherBat
422422 *
423423 * @return a new DataLoader
424424 */
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) {
426426 return newMappedPublisherDataLoader(batchLoadFunction, null);
427427 }
428428
@@ -436,7 +436,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoader(MappedPublish
436436 *
437437 * @return a new DataLoader
438438 */
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) {
440440 return mkDataLoader(batchLoadFunction, options);
441441 }
442442
@@ -457,7 +457,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoader(MappedPublish
457457 *
458458 * @return a new DataLoader
459459 */
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) {
461461 return newMappedPublisherDataLoaderWithTry(batchLoadFunction, null);
462462 }
463463
@@ -475,7 +475,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoaderWithTry(Mapped
475475 *
476476 * @see #newDataLoaderWithTry(BatchLoader)
477477 */
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) {
479479 return mkDataLoader(batchLoadFunction, options);
480480 }
481481
@@ -489,7 +489,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoaderWithTry(Mapped
489489 *
490490 * @return a new DataLoader
491491 */
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) {
493493 return newMappedPublisherDataLoader(batchLoadFunction, null);
494494 }
495495
@@ -503,7 +503,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoader(MappedPublish
503503 *
504504 * @return a new DataLoader
505505 */
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) {
507507 return mkDataLoader(batchLoadFunction, options);
508508 }
509509
@@ -524,7 +524,7 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoader(MappedPublish
524524 *
525525 * @return a new DataLoader
526526 */
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) {
528528 return newMappedPublisherDataLoaderWithTry(batchLoadFunction, null);
529529 }
530530
@@ -540,9 +540,9 @@ public static <K, V> DataLoader<K, V> newMappedPublisherDataLoaderWithTry(Mapped
540540 *
541541 * @return a new DataLoader
542542 *
543- * @see #newMappedPublisherDataLoaderWithTry(MappedPublisherBatchLoader )
543+ * @see #newMappedPublisherDataLoaderWithTry(MappedBatchPublisher )
544544 */
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) {
546546 return mkDataLoader(batchLoadFunction, options);
547547 }
548548
0 commit comments