Uses of Class
org.opends.server.replication.server.changelog.api.DomainReplicaId
-
Packages that use DomainReplicaId Package Description org.opends.server.replication.common This package contains utilities that can are used by all the packages below org.opends.server.replication.org.opends.server.replication.server This package contains the code for the Replication Server part of the Multimaster replication feature.org.opends.server.replication.server.changelog.api This package contains the API for the changelog database.org.opends.server.replication.server.changelog.file This package contains a file-based log implementation for the changelog database API. -
-
Uses of DomainReplicaId in org.opends.server.replication.common
Methods in org.opends.server.replication.common with parameters of type DomainReplicaId Modifier and Type Method Description static CSNGenerator
CSNGenerator. newCSNGenerator(DomainReplicaId replicaId, long timestamp)
Create a newCSNGenerator
. -
Uses of DomainReplicaId in org.opends.server.replication.server
Methods in org.opends.server.replication.server that return types with arguments of type DomainReplicaId Modifier and Type Method Description Set<DomainReplicaId>
ChangelogState. getRemovedReplicasNotProperlyStopped()
Returns all the replicas whose changelog has been purged and did not send aReplicaOfflineMsg
when they stopped.Set<DomainReplicaId>
ChangelogState. getReplicas()
Returns all the replicas which have a dedicated replica DB.Methods in org.opends.server.replication.server with parameters of type DomainReplicaId Modifier and Type Method Description ChangelogState
ChangelogState. addReplica(DomainReplicaId replica)
Returns a changelog state with the specified replica added if it is not already present.ChangelogState
ChangelogState. removeReplica(DomainReplicaId replica)
Returns a changelog state with the specified replica removed if it was present.Method parameters in org.opends.server.replication.server with type arguments of type DomainReplicaId Modifier and Type Method Description static ChangelogState
ChangelogState. newChangelogState(Map<Dn,Long> domainToGenerationId, Set<DomainReplicaId> replicas, Set<DomainReplicaId> replicasNotProperlyStopped)
Builds a changelog state. -
Uses of DomainReplicaId in org.opends.server.replication.server.changelog.api
Methods in org.opends.server.replication.server.changelog.api that return DomainReplicaId Modifier and Type Method Description static DomainReplicaId
DomainReplicaId. of(Dn baseDN, ReplicaId replicaId)
Creates a ReplicaId with the provided parameters.Methods in org.opends.server.replication.server.changelog.api with parameters of type DomainReplicaId Modifier and Type Method Description int
DomainReplicaId. compareTo(DomainReplicaId o)
DBCursor<UpdateMsg>
ReplicationDomainDB. getCursorFrom(DomainReplicaId replica, CSN startCSN, DBCursor.CursorOptions options)
UpdateMsg
ReplicationDomainDB. getNewestMessage(DomainReplicaId replica)
Returns the newest message from the replica DB for the provided replica.ReplicationDomainDB.ReplicaDbDescription
ReplicationDomainDB. getReplicaDbDescription(DomainReplicaId replica)
Returns a textual description of the contents of the changelog of the provided replica and domain.boolean
ReplicationDomainDB. hasReplicaDb(DomainReplicaId replica)
Returnstrue
if a changelog already exists for the replica in the domain. -
Uses of DomainReplicaId in org.opends.server.replication.server.changelog.file
Methods in org.opends.server.replication.server.changelog.file with parameters of type DomainReplicaId Modifier and Type Method Description void
DomainDBCursor. addReplicaDB(DomainReplicaId replicaId, CSN startCSN)
Adds a replicaDB for this cursor to iterate over.DBCursor<UpdateMsg>
FileChangelogDB. getCursorFrom(DomainReplicaId replica, CSN startCsn, DBCursor.CursorOptions options)
UpdateMsg
FileChangelogDB. getNewestMessage(DomainReplicaId replica)
ReplicationDomainDB.ReplicaDbDescription
FileChangelogDB. getReplicaDbDescription(DomainReplicaId replica)
boolean
FileChangelogDB. hasReplicaDb(DomainReplicaId replica)
-