1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
use super::ReadHandle;
use std::sync::atomic::AtomicPtr;
use std::{fmt, sync};
pub struct ReadHandleFactory<T> {
pub(super) inner: sync::Arc<AtomicPtr<T>>,
pub(super) epochs: crate::Epochs,
}
impl<T> fmt::Debug for ReadHandleFactory<T> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
f.debug_struct("ReadHandleFactory")
.field("epochs", &self.epochs)
.finish()
}
}
impl<T> Clone for ReadHandleFactory<T> {
fn clone(&self) -> Self {
Self {
inner: sync::Arc::clone(&self.inner),
epochs: sync::Arc::clone(&self.epochs),
}
}
}
impl<T> ReadHandleFactory<T> {
pub fn handle(&self) -> ReadHandle<T> {
ReadHandle::new_with_arc(
sync::Arc::clone(&self.inner),
sync::Arc::clone(&self.epochs),
)
}
}