Skip to main content

StreamingWriter

Trait StreamingWriter 

Source
pub trait StreamingWriter: Send + Sync {
    // Required method
    fn create(&self, path: &str) -> Result<Box<dyn StreamingWriteHandle>>;
}
Expand description

Trait for streaming data writing

Required Methods§

Source

fn create(&self, path: &str) -> Result<Box<dyn StreamingWriteHandle>>

Create a file for streaming write

Implementors§