Uses of Class
org.opends.server.replication.server.changelog.api.ChangeNumberIndexRecord
-
Packages that use ChangeNumberIndexRecord Package Description org.opends.server.backends Contains various Directory Server backend implementations.org.opends.server.replication.server.changelog.api This package contains the API for the changelog database. -
-
Uses of ChangeNumberIndexRecord in org.opends.server.backends
Methods in org.opends.server.backends with parameters of type ChangeNumberIndexRecord Modifier and Type Method Description static void
ChangelogBackend. updateCookieToMediumConsistencyPoint(MultiDomainServerState cookie, ECLMultiDomainDBCursor cursor, ChangeNumberIndexRecord cnIndexRecord)
Rebuilds the changelogcookie starting at the newest change number index record. -
Uses of ChangeNumberIndexRecord in org.opends.server.replication.server.changelog.api
Methods in org.opends.server.replication.server.changelog.api that return ChangeNumberIndexRecord Modifier and Type Method Description ChangeNumberIndexRecord
ChangeNumberIndexDB. getNewestRecord()
Get the newest record stored in this DB.ChangeNumberIndexRecord
ChangeNumberIndexDB. getOldestRecord()
Get the oldest record stored in this DB.Methods in org.opends.server.replication.server.changelog.api that return types with arguments of type ChangeNumberIndexRecord Modifier and Type Method Description DBCursor<ChangeNumberIndexRecord>
ChangeNumberIndexDB. getCursorFrom(long startChangeNumber)
Generate a newDBCursor
that allows to browse the db managed by this object and starting at the position defined by a given changeNumber.Flowable<ChangeNumberIndexRecord>
ChangeNumberIndexDB. getReader(String name, long startChangeNumber)
Returns a reader of the index database, starting at the position defined by the provided changeNumber, that completes when it reaches the most recent record.Methods in org.opends.server.replication.server.changelog.api with parameters of type ChangeNumberIndexRecord Modifier and Type Method Description long
ChangeNumberIndexDB. addRecord(ChangeNumberIndexRecord record)
Add an update to the list of messages that must be saved to this DB managed by this DB and return the changeNumber associated to this record.
-