blob: ff4fd2f1f494987c1c18f2b2ade80e2f18f0e73d [file] [log] [blame]
package accord.api;
/**
* 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(Key start, Key end, Store store);
}