コード例 #1
0
ファイル: TestTreeIndexing.java プロジェクト: mindis/nuxeo
 public void startTransaction() {
   if (syncMode) {
     ElasticSearchInlineListener.useSyncIndexing.set(true);
   }
   if (!TransactionHelper.isTransactionActive()) {
     TransactionHelper.startTransaction();
   }
   Assert.assertEquals(0, esa.getPendingWorkerCount());
   commandProcessed = esa.getTotalCommandProcessed();
 }
コード例 #2
0
ファイル: TestTreeIndexing.java プロジェクト: mindis/nuxeo
 public void assertNumberOfCommandProcessed(int processed) throws Exception {
   Assert.assertEquals(processed, esa.getTotalCommandProcessed() - commandProcessed);
 }