pub struct FlowSubsystemFactory { /* private fields */ }Expand description
Factory for creating FlowSubsystem with proper interceptor registration
Implementations§
Source§impl FlowSubsystemFactory
impl FlowSubsystemFactory
pub fn new() -> Self
pub fn with_configurator<F>(configurator: F) -> Self
Trait Implementations§
Source§impl Default for FlowSubsystemFactory
impl Default for FlowSubsystemFactory
Source§impl SubsystemFactory<StandardCommandTransaction> for FlowSubsystemFactory
impl SubsystemFactory<StandardCommandTransaction> for FlowSubsystemFactory
fn provide_interceptors( &self, builder: StandardInterceptorBuilder<StandardCommandTransaction>, ioc: &IocContainer, ) -> StandardInterceptorBuilder<StandardCommandTransaction>
fn create<'life0, 'async_trait>(
self: Box<Self>,
ioc: &'life0 IocContainer,
) -> Pin<Box<dyn Future<Output = Result<Box<dyn Subsystem>>> + Send + 'async_trait>>where
Self: 'async_trait,
'life0: 'async_trait,
Auto Trait Implementations§
impl Freeze for FlowSubsystemFactory
impl !RefUnwindSafe for FlowSubsystemFactory
impl Send for FlowSubsystemFactory
impl !Sync for FlowSubsystemFactory
impl Unpin for FlowSubsystemFactory
impl !UnwindSafe for FlowSubsystemFactory
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more