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

hashCode → int
The hash code for this object.
no setteroverride
runtimeType → Type
A representation of the runtime type of the object.
no setterinherited
value → int
final

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