pub trait Transactable: Send + Sync {
// Required method
fn transact(
&self,
code: TransactionCode,
reader: &mut Parcel,
reply: &mut Parcel,
) -> Result<()>;
}Expand description
A transactable object that can be used to process Binder commands.