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§
Sourcefn with_options(
&self,
store: ObjectStoreRef,
location: &Url,
options: &StorageOptions,
) -> DeltaResult<Arc<dyn LogStore>>
fn with_options( &self, store: ObjectStoreRef, location: &Url, options: &StorageOptions, ) -> DeltaResult<Arc<dyn LogStore>>
Create a new LogStore