Package org.camunda.bpm.engine.impl.db.entitymanager.operation

Examples of org.camunda.bpm.engine.impl.db.entitymanager.operation.DbBulkOperation


    performBulkOperation(entityType, statement, parameter, DELETE_BULK);
  }

  protected DbBulkOperation performBulkOperation(Class<? extends DbEntity> entityType, String statement, Object parameter, DbOperationType operationType) {
    // create operation
    DbBulkOperation bulkOperation = new DbBulkOperation();

    // configure operation
    bulkOperation.setOperationType(operationType);
    bulkOperation.setEntityType(entityType);
    bulkOperation.setStatement(statement);
    bulkOperation.setParameter(parameter);

    // schedule operation
    dbOperationManager.addOperation(bulkOperation);
    return bulkOperation;
  }
View Full Code Here


    performBulkOperation(entityType, statement, parameter, DELETE_BULK);
  }

  protected DbBulkOperation performBulkOperation(Class<? extends DbEntity> entityType, String statement, Object parameter, DbOperationType operationType) {
    // create operation
    DbBulkOperation bulkOperation = new DbBulkOperation();

    // configure operation
    bulkOperation.setOperationType(operationType);
    bulkOperation.setEntityType(entityType);
    bulkOperation.setStatement(statement);
    bulkOperation.setParameter(parameter);

    // schedule operation
    dbOperationManager.addOperation(bulkOperation);
    return bulkOperation;
  }
View Full Code Here

TOP

Related Classes of org.camunda.bpm.engine.impl.db.entitymanager.operation.DbBulkOperation

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.