Skip to main content

SyncLoopRuntimeFactory

Trait SyncLoopRuntimeFactory 

Source
pub trait SyncLoopRuntimeFactory: Send + Sync {
    // Required method
    fn prepare(&self) -> Result<PreparedSyncLoopRuntime, SyncLoopError>;
}
Expand description

Creates a ready sync-loop thread and runtime before Store publication.

Required Methods§

Source

fn prepare(&self) -> Result<PreparedSyncLoopRuntime, SyncLoopError>

Prepare the runtime without attaching an initialized Store session.

Implementors§