#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub struct CheckpointContext {
pub checkpoint_id: u64,
pub timestamp_ms: u64,
}
impl CheckpointContext {
pub fn new(checkpoint_id: u64, timestamp_ms: u64) -> Self {
Self {
checkpoint_id,
timestamp_ms,
}
}
}