reifydb_core/event/
transaction.rs

1// Copyright (c) reifydb.com 2025
2// This file is licensed under the AGPL-3.0-or-later, see license.md file
3
4use crate::{CommitVersion, CowVec, delta::Delta, impl_event};
5
6#[derive(Debug)]
7pub struct PostCommitEvent {
8	pub deltas: CowVec<Delta>,
9	pub version: CommitVersion,
10}
11
12impl_event!(PostCommitEvent);