Struct re_analytics::native::pipeline::Pipeline
source · pub struct Pipeline {
event_tx: Sender<Result<AnalyticsEvent, RecvError>>,
}
Expand description
An eventual, at-least-once(-ish) event pipeline, backed by a write-ahead log on the local disk.
Flushing of the WAL is entirely left up to the OS page cache, hance the -ish.
Fields§
§event_tx: Sender<Result<AnalyticsEvent, RecvError>>
Implementations§
Trait Implementations§
Auto Trait Implementations§
impl Freeze for Pipeline
impl RefUnwindSafe for Pipeline
impl Send for Pipeline
impl Sync for Pipeline
impl Unpin for Pipeline
impl UnwindSafe for Pipeline
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more