pub trait IComponentProcess<TConfig, TMessage>where
TMessage: IMessage,{
// Required method
fn process<'life0, 'async_trait>(
&'life0 self,
config: TConfig,
input: CmpInput<TMessage>,
output: CmpOutput<TMessage>,
cache: Cache<TMessage>
) -> Pin<Box<dyn Future<Output = Result<(), ComponentError>> + Send + 'async_trait>>
where Self: 'async_trait,
'life0: 'async_trait;
}