pub trait SpecsUpdateListener: Send + Sync {
// Required methods
fn did_receive_specs_update(
&self,
update: SpecsUpdate,
) -> Result<(), StatsigErr>;
fn get_current_specs_info(&self) -> SpecsInfo;
}
pub trait SpecsUpdateListener: Send + Sync {
// Required methods
fn did_receive_specs_update(
&self,
update: SpecsUpdate,
) -> Result<(), StatsigErr>;
fn get_current_specs_info(&self) -> SpecsInfo;
}