1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
use {
crate::append_vec::StoredAccountMeta,
solana_sdk::{account::AccountSharedData, clock::Slot, pubkey::Pubkey, signature::Signature},
std::sync::{Arc, RwLock},
};
pub trait AccountsUpdateNotifierInterface: std::fmt::Debug {
fn notify_account_update(
&self,
slot: Slot,
account: &AccountSharedData,
txn_signature: &Option<&Signature>,
pubkey: &Pubkey,
write_version: u64,
);
fn notify_account_restore_from_snapshot(&self, slot: Slot, account: &StoredAccountMeta);
fn notify_end_of_restore_from_snapshot(&self);
}
pub type AccountsUpdateNotifier = Arc<RwLock<dyn AccountsUpdateNotifierInterface + Sync + Send>>;