incLockCount property

int incLockCount

increments the lock count and returns the new lock count.

Implementation

int get incLockCount {
  var _lockCount = _lockCountForName;
  _lockCount++;
  _lockCounts[name] = _lockCount;
  _log('Incremented lock: $_lockCount');
  return _lockCount;
}