Package org.sonar.core.cluster

Examples of org.sonar.core.cluster.ClusterAction


  public void shouldCommitWhenReachingBatchSizeWithoutCommits() {
    SqlSession mybatisSession = mock(SqlSession.class);
    WorkQueue queue = mock(WorkQueue.class);
    BatchSession session = new BatchSession(queue, mybatisSession, 10);

    ClusterAction action = new ClusterAction() {
      @Override
      public Object call() throws Exception {
        return null;
      }
    };
View Full Code Here

TOP

Related Classes of org.sonar.core.cluster.ClusterAction

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.