feat(http): implement is_indexing for stats

This commit is contained in:
Alexey Shekhirin 2021-04-02 14:44:35 +03:00
parent 09d9a29176
commit 87412f63ef
No known key found for this signature in database
GPG key ID: AF9A26AA133B5B98
9 changed files with 65 additions and 22 deletions

View file

@ -52,4 +52,5 @@ pub trait UpdateActorHandle {
data: mpsc::Receiver<PayloadData<Self::Data>>,
uuid: Uuid,
) -> Result<UpdateStatus>;
async fn is_locked(&self, uuid: Uuid) -> Result<bool>;
}