Package org.sonar.batch.index

Examples of org.sonar.batch.index.ScanPersister


    // End of sensor phase
    profiler.onSensorsPhase(sensorsEvent(false));
  }

  private void persistersPhase(PhasesSumUpTimeProfiler profiler) throws InterruptedException {
    ScanPersister persister = new FakeScanPersister();
    // Start of persister phase
    profiler.onPersistersPhase(persistersEvent(true));
    // Start of a ScanPersister
    profiler.onPersisterExecution(persisterEvent(persister, true));
    clock.sleep(40);
View Full Code Here

TOP

Related Classes of org.sonar.batch.index.ScanPersister

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.