pub struct StreamCommitMessage {
pub transaction_id: i32,
pub lsn: i64,
pub final_lsn: i64,
pub timestamp: DateTime<Utc>,
}
Fields§
§transaction_id: i32
Xid of the transaction.
lsn: i64
The LSN of the commit.
final_lsn: i64
The end LSN of the transaction.
timestamp: DateTime<Utc>
Commit timestamp of the transaction.
Originally, the value is in number of microseconds since PostgreSQL epoch (2000-01-01).