blob: 1479c86a1026c9da0ef8381cd7ef408d1baa1c3f [file] [log] [blame]
package accord.api;
import accord.topology.KeyRanges;
import accord.txn.Timestamp;
/**
* A collection of data to write to one or more stores
*
* TODO: support splitting so as to minimise duplication of data across shards
*/
public interface Write
{
void apply(KeyRanges range, Timestamp executeAt, Store store);
}