Skip to content

Commit

Permalink
Update core.rs
Browse files Browse the repository at this point in the history
  • Loading branch information
ikopylov authored Jan 1, 2023
1 parent d76933d commit 54498e8
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions bob-backend/src/core.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,12 +108,7 @@ pub trait BackendStorage: Debug + MetricsProducer + Send + Sync + 'static {
async fn exist_alien(&self, op: Operation, keys: &[BobKey]) -> Result<Vec<bool>, Error>;

async fn delete(&self, op: Operation, key: BobKey, force_delete: bool) -> Result<u64, Error>;
async fn delete_alien(
&self,
op: Operation,
key: BobKey,
force_delete: bool,
) -> Result<u64, Error>;
async fn delete_alien(&self, op: Operation, key: BobKey, force_delete: bool) -> Result<u64, Error>;

async fn shutdown(&self);

Expand Down

0 comments on commit 54498e8

Please sign in to comment.