Interface Translog.Snapshot

  • All Superinterfaces:
    AutoCloseable, Closeable
    Enclosing class:
    Translog

    public static interface Translog.Snapshot
    extends Closeable
    A snapshot of the transaction log, allows to iterate over all the transaction log operations.
    • Method Detail

      • totalOperations

        int totalOperations()
        The total estimated number of operations in the snapshot.
      • skippedOperations

        default int skippedOperations()
        The number of operations have been skipped (overridden or trimmed) in the snapshot so far. Unlike totalOperations(), this value is updated each time after next()) is called.