Searched defs:maxCSNs (Results 1 - 3 of 3) sorted by relevance

/forgerock/opendj2/src/server/org/opends/server/replication/server/
H A DReplicationDomainMonitorData.java76 private ConcurrentMap<Integer, CSN> maxCSNs = field in class:ReplicationDomainMonitorData
166 for (Entry<Integer, CSN> entry2 : maxCSNs.entrySet())
219 for (Entry<Integer, CSN> entry2 : maxCSNs.entrySet())
258 // maxCSNs
259 for (Entry<Integer, CSN> entry : maxCSNs.entrySet())
311 CSN currentMaxCSN = maxCSNs.get(serverId);
314 maxCSNs.put(serverId, newCSN);
318 maxCSNs.replace(serverId, newCSN);
/forgerock/opendj2-hg/src/server/org/opends/server/replication/server/
H A DReplicationDomainMonitorData.java76 private ConcurrentMap<Integer, CSN> maxCSNs = field in class:ReplicationDomainMonitorData
166 for (Entry<Integer, CSN> entry2 : maxCSNs.entrySet())
219 for (Entry<Integer, CSN> entry2 : maxCSNs.entrySet())
258 // maxCSNs
259 for (Entry<Integer, CSN> entry : maxCSNs.entrySet())
311 CSN currentMaxCSN = maxCSNs.get(serverId);
314 maxCSNs.put(serverId, newCSN);
318 maxCSNs.replace(serverId, newCSN);
/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/replication/server/
H A DReplicationDomainMonitorData.java62 private ConcurrentMap<Integer, CSN> maxCSNs = new ConcurrentHashMap<>(); field in class:ReplicationDomainMonitorData
167 for (Entry<Integer, CSN> entry2 : maxCSNs.entrySet())
216 // maxCSNs
217 for (Entry<Integer, CSN> entry : maxCSNs.entrySet())
275 CSN currentMaxCSN = maxCSNs.get(serverId);
278 maxCSNs.put(serverId, newCSN);
283 maxCSNs.replace(serverId, newCSN);

Completed in 30 milliseconds