Class ReplicationMessage
The common base class for all streaming replication messages
Namespace: Npgsql.Replication
Assembly: Npgsql.dll
Syntax
public abstract class ReplicationMessage
Properties
| Improve this Doc View SourceServerClock
The server's system clock at the time this message was transmitted, as microseconds since midnight on 2000-01-01.
Declaration
public DateTime ServerClock { get; }
Property Value
Type | Description |
---|---|
DateTime |
Remarks
Since the client using Npgsql and the server may be located in different time zones,
as of Npgsql 7.0 this value is no longer converted to local time but keeps its original value in UTC.
You can check
WalEnd
The current end of WAL on the server.
Declaration
public NpgsqlLogSequenceNumber WalEnd { get; }
Property Value
Type | Description |
---|---|
NpgsqlLogSequenceNumber |
WalStart
The starting point of the WAL data in this message.
Declaration
public NpgsqlLogSequenceNumber WalStart { get; }
Property Value
Type | Description |
---|---|
NpgsqlLogSequenceNumber |