public ListenableFuture executeAsync()

in src/main/java/com/spotify/bigtable/read/AbstractBigtableRead.java [75:79]


  public ListenableFuture<T> executeAsync() {
    final ListenableFuture<List<Row>> future = getClient().readRowsAsync(readRequest().build());
    return Futures.transform(future, rows -> toDataType().apply(rows),
            MoreExecutors.directExecutor());
  }