modules/table/src/main/java/org/apache/ignite/internal/table/distributed/replicator/PartitionReplicaListener.java [2605:2615]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void inBusyLock(Runnable runnable) {
        if (!busyLock.enterBusy()) {
            return;
        }

        try {
            runnable.run();
        } finally {
            busyLock.leaveBusy();
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



modules/table/src/main/java/org/apache/ignite/internal/table/distributed/index/IndexBuilder.java [174:184]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
    private void inBusyLock(Runnable runnable) {
        if (!busyLock.enterBusy()) {
            return;
        }

        try {
            runnable.run();
        } finally {
            busyLock.leaveBusy();
        }
    }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



