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