PostingsMapLoader typedef
PostingsMapLoader =
Future<PostingsMap> Function(Iterable<String> terms)
Asynchronously retrieves a PostingsMap subset for a collection of
terms
from a PostingsMap data source, usually persisted storage.
Implementation
typedef PostingsMapLoader = Future<PostingsMap> Function(
Iterable<String> terms);