pub trait WaiterProxyInterface: Send + Sync { // Required method fn ack( &self, from_node: &str, from_name: &str, status: i32, ) -> Result<(), Error>; }