Interface AsyncGroupMapCollate.Mapper<T,R>

Enclosing class:
AsyncGroupMapCollate

public static interface AsyncGroupMapCollate.Mapper<T,R>
  • Method Summary

    Modifier and Type
    Method
    Description
    map(List<T> items)
    Map items into a List of results type R.
  • Method Details

    • map

      CompletableFuture<List<R>> map(List<T> items)
      Map items into a List of results type R.
      Parameters:
      items - the items to map.
      Returns:
      a CompletableFuture containing the List of results.