pub trait ApplyRequestSyncHandler {
// Required methods
fn handle_apply_request(
&self,
receiver: Uint64,
first_receiver: Uint64,
action: Uint64,
) -> Result<i32>;
fn handle_apply_end(&self) -> Result<i32>;
}