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§
Sourcefn prepare(&self) -> Result<PreparedSyncLoopRuntime, SyncLoopError>
fn prepare(&self) -> Result<PreparedSyncLoopRuntime, SyncLoopError>
Prepare the runtime without attaching an initialized Store session.