pub async fn perform<T>(
op: Box<dyn Op<T>>,
dry: &mut DryContext,
wet: &mut WetContext,
) -> OpResult<T>where
T: Send + 'static,Expand description
Central execution function with automatic logging wrapper Equivalent to Java OPS.perform() method