infos method

  1. @override
Future<Iterable<I>> infos(
  1. String name
)

Returns a Iterable over all the infos in the partition.

  • name: The partition name

Implementation

@override
Future<Iterable<I>> infos(String name) => _getKeys(name)
    .then((keys) => _getInfos(name, keys))
    .then((infos) => infos.map((info) => info!));