LSN class
LSN is a PostgreSQL Log Sequence Number.
For more details, see: https://www.postgresql.org/docs/current/datatype-pg-lsn.html
Constructors
- LSN(int value)
- Construct an LSN from a 64-bit integer.
- LSN.fromString(String string)
- Construct an LSN from XXX/XXX format used by PostgreSQL
Properties
Methods
-
noSuchMethod(
Invocation invocation) → dynamic -
Invoked when a nonexistent method or property is accessed.
inherited
-
toString(
) → String -
Formats the LSN value into the XXX/XXX format which is the text format
used by PostgreSQL.
override
Operators
-
operator +(
LSN other) → LSN -
operator -(
LSN other) → LSN -
operator ==(
covariant LSN other) → bool -
The equality operator.
override