Package org.sonar.api.batch

Examples of org.sonar.api.batch.PostJob


    // End of persister phase
    profiler.onPersistersPhase(persistersEvent(false));
  }

  private void postJobPhase(PhasesSumUpTimeProfiler profiler) throws InterruptedException {
    PostJob postJob = new FakePostJob();
    // Start of sensor phase
    profiler.onPostJobsPhase(postJobsEvent(true));
    // Start of a Sensor
    profiler.onPostJobExecution(postJobEvent(postJob, true));
    clock.sleep(30);
View Full Code Here

TOP

Related Classes of org.sonar.api.batch.PostJob

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.