Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions vine-core/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ pub mod metadata;
pub mod writer_config;
pub mod writer_cache;
pub mod streaming_writer;
pub mod streaming_writer_v2;
pub mod vine_batch_writer;
pub mod vine_streaming_writer;
pub mod storage_writer;
Expand Down
2 changes: 2 additions & 0 deletions vine-core/src/streaming_writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@ use crate::writer_config::WriterConfig;
/// - Automatic file rotation
///
/// Caching is handled internally.
#[deprecated]
pub struct StreamingWriter {
base_path: PathBuf,
metadata: Metadata,
config: WriterConfig,
buffer: Vec<String>,
}

#[deprecated]
impl StreamingWriter {
/// Create new streaming writer
///
Expand Down
Loading
Loading