2021-09-30 14:26:17 -07:00
|
|
|
use {
|
|
|
|
crate::append_vec::StoredAccountMeta,
|
|
|
|
solana_sdk::{account::AccountSharedData, clock::Slot, pubkey::Pubkey},
|
|
|
|
std::sync::{Arc, RwLock},
|
|
|
|
};
|
|
|
|
|
|
|
|
pub trait AccountsUpdateNotifierInterface: std::fmt::Debug {
|
|
|
|
/// Notified when an account is updated at runtime, due to transaction activities
|
|
|
|
fn notify_account_update(&self, slot: Slot, pubkey: &Pubkey, account: &AccountSharedData);
|
|
|
|
|
|
|
|
/// Notified when the AccountsDb is initialized at start when restored
|
|
|
|
/// from a snapshot.
|
|
|
|
fn notify_account_restore_from_snapshot(&self, slot: Slot, account: &StoredAccountMeta);
|
|
|
|
|
2021-10-24 12:43:33 -07:00
|
|
|
/// Notified when all accounts have been notified when restoring from a snapshot.
|
|
|
|
fn notify_end_of_restore_from_snapshot(&self);
|
|
|
|
|
2021-09-30 14:26:17 -07:00
|
|
|
/// Notified when a slot is optimistically confirmed
|
|
|
|
fn notify_slot_confirmed(&self, slot: Slot, parent: Option<Slot>);
|
|
|
|
|
|
|
|
/// Notified when a slot is marked frozen.
|
|
|
|
fn notify_slot_processed(&self, slot: Slot, parent: Option<Slot>);
|
|
|
|
|
|
|
|
/// Notified when a slot is rooted.
|
|
|
|
fn notify_slot_rooted(&self, slot: Slot, parent: Option<Slot>);
|
|
|
|
}
|
|
|
|
|
|
|
|
pub type AccountsUpdateNotifier = Arc<RwLock<dyn AccountsUpdateNotifierInterface + Sync + Send>>;
|