CmisSync.Lib.ActivityListenerAggregator.ActivityStarted C# (CSharp) Method

ActivityStarted() public method

Call this method to indicate that activity has started.
public ActivityStarted ( ) : void
return void
        public void ActivityStarted() {
            lock(this.countingLock) {
                this.numberOfActiveProcesses++;
            }

            this.overall.ActivityStarted();
        }