blob: fa2780aa7b7a35e4ddd7cfacf3d94a56e64c5748 [file] [log] [blame]
package accord.api;
import accord.topology.KeyRanges;
/**
* A read to be performed on potentially multiple shards, the inputs of which may be fed to a {@link Query}
*
* TODO: support splitting the read into per-shard portions
*/
public interface Read
{
Data read(KeyRanges ranges, Store store);
}