Пример #1
0
        public InMemoryEventBusPerformanceSnapshot TakeSnapshot()
        {
            var newSnapshot = new InMemoryEventBusPerformanceSnapshot();
            InMemoryEventBusPerformanceSnapshot previousSnapshot = this.currentSnapshot;

            this.currentSnapshot = newSnapshot;

            return(previousSnapshot);
        }
Пример #2
0
 public InMemoryEventBusPerformanceCounter()
 {
     this.currentSnapshot = new InMemoryEventBusPerformanceSnapshot();
 }