Introduce an Index mathod to retrieve the currently processed update

This commit is contained in:
Clément Renault 2019-10-15 14:54:52 +02:00
parent c9618793e3
commit 3278d22279
No known key found for this signature in database
GPG Key ID: 92ADA4E935E71FA4
2 changed files with 8 additions and 2 deletions

View File

@ -23,8 +23,7 @@ fn update_awaiter(
rkv: Arc<RwLock<rkv::Rkv>>,
update_fn: Arc<ArcSwapFn>,
index: Index,
)
{
) {
for () in receiver {
// consume all updates in order (oldest first)
loop {

View File

@ -186,6 +186,13 @@ impl Index {
)
}
pub fn current_update_id<T: rkv::Readable>(&self, reader: &T) -> MResult<Option<u64>> {
match self.updates.last_update_id(reader)? {
Some((id, _)) => Ok(Some(id)),
None => Ok(None),
}
}
pub fn update_status<T: rkv::Readable>(
&self,
reader: &T,