Skip to content

Commit

Permalink
Update ReadWriteBackingMap.java
Browse files Browse the repository at this point in the history
  • Loading branch information
mgamanho authored Sep 25, 2024
1 parent d45e878 commit 3943d56
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7609,12 +7609,18 @@ public StoreOperationObserver(Set setEntries)
*/
public void onNext(BinaryEntry binEntry)
{
log("**MG** onNext beginning");

Entry entry = (Entry) binEntry;
ConcurrentMap mapControl = getControlMap();
Object binKey = binEntry.getBinaryKey();

log("**MG** onNext here(1)");

f_counterProcessed.incrementAndGet();

log("**MG** onNext here(2)");

if (getContext().isKeyOwned(binKey) && mapControl.lock(binKey, 100L))
{
try
Expand Down

0 comments on commit 3943d56

Please sign in to comment.