From f01dcff91c44acbcc1720293bfbedaa3ca2257c5 Mon Sep 17 00:00:00 2001 From: Sam Gwilym Date: Tue, 20 Aug 2024 17:02:17 +0100 Subject: [PATCH] Add flush --- data-model/src/store.rs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/data-model/src/store.rs b/data-model/src/store.rs index 7496798..b04abc6 100644 --- a/data-model/src/store.rs +++ b/data-model/src/store.rs @@ -179,4 +179,7 @@ where area: &AreaOfInterest, traceless: bool, ) -> impl Future>; + + /// Force persistence of all previous mutations + fn flush() -> impl Future; }