deltalake_core::logstore

Trait LogStoreFactory

Source
pub trait LogStoreFactory: Send + Sync {
    // Provided method
    fn with_options(
        &self,
        store: ObjectStoreRef,
        location: &Url,
        options: &StorageOptions,
    ) -> DeltaResult<Arc<dyn LogStore>> { ... }
}
Expand description

Trait for generating LogStore implementations

Provided Methods§

Source

fn with_options( &self, store: ObjectStoreRef, location: &Url, options: &StorageOptions, ) -> DeltaResult<Arc<dyn LogStore>>

Create a new LogStore

Implementors§