pub trait ClientService<I, T> {
// Required method
fn execute(&self, ctx: &mut dyn ExecutionContext<T>, input: &I);
}Expand description
Protocol for external adapters (APIs, DBs) to perform side-effects.
pub trait ClientService<I, T> {
// Required method
fn execute(&self, ctx: &mut dyn ExecutionContext<T>, input: &I);
}Protocol for external adapters (APIs, DBs) to perform side-effects.