pub trait InterceptorFactory<CT: CommandTransaction>: Send + Sync {
// Required method
fn create(&self) -> Interceptors<CT>;
}Expand description
Factory trait for creating interceptor instances for each CommandTransaction
Required Methods§
Sourcefn create(&self) -> Interceptors<CT>
fn create(&self) -> Interceptors<CT>
Create a new instance of interceptors for a CommandTransaction