Uses of Class
org.camunda.bpm.engine.impl.db.entitymanager.operation.DbEntityOperation
Package
Description
-
Uses of DbEntityOperation in org.camunda.bpm.engine.impl.db
Modifier and TypeMethodDescriptionprotected abstract void
AbstractPersistenceSession.deleteEntity
(DbEntityOperation operation) protected abstract void
AbstractPersistenceSession.insertEntity
(DbEntityOperation operation) protected abstract void
AbstractPersistenceSession.updateEntity
(DbEntityOperation operation) -
Uses of DbEntityOperation in org.camunda.bpm.engine.impl.db.entitymanager.operation
Modifier and TypeFieldDescriptionDbOperationManager.deletes
DELETEs of a single entitystatic Comparator<DbEntityOperation>
DbOperationManager.INSERT_OPERATION_COMPARATOR
DbOperationManager.inserts
INSERTsstatic Comparator<DbEntityOperation>
DbOperationManager.MODIFICATION_OPERATION_COMPARATOR
DbOperationManager.updates
UPDATEs of a single entityModifier and TypeMethodDescriptionprotected SortedSet<DbEntityOperation>
DbOperationManager.getDeletesByType
(Class<? extends DbEntity> type, boolean create) protected SortedSet<DbEntityOperation>
DbOperationManager.getInsertsForType
(Class<? extends DbEntity> type, boolean create) protected SortedSet<DbEntityOperation>
DbOperationManager.getUpdatesByType
(Class<? extends DbEntity> type, boolean create) protected List<DbEntityOperation>
DbOperationManager.sortByReferences
(SortedSet<DbEntityOperation> preSorted) Assumptions: a) all operations in the set work on entities such that the entities implementHasDbReferences
.Modifier and TypeMethodDescriptionboolean
DbOperationManager.addOperation
(DbEntityOperation newOperation) Modifier and TypeMethodDescriptionprotected void
DbOperationManager.addSortedModificationsForType
(Class<?> type, SortedSet<DbEntityOperation> preSortedOperations, List<DbOperation> flush) protected List<DbEntityOperation>
DbOperationManager.sortByReferences
(SortedSet<DbEntityOperation> preSorted) Assumptions: a) all operations in the set work on entities such that the entities implementHasDbReferences
. -
Uses of DbEntityOperation in org.camunda.bpm.engine.impl.db.entitymanager.operation.comparator
Modifier and TypeMethodDescriptionint
DbEntityOperationComparator.compare
(DbEntityOperation firstOperation, DbEntityOperation secondOperation) -
Uses of DbEntityOperation in org.camunda.bpm.engine.impl.db.sql
Modifier and TypeMethodDescriptionprotected void
DbSqlSession.configureFailedDbEntityOperation
(DbEntityOperation operation, org.apache.ibatis.exceptions.PersistenceException failure) protected void
BatchDbSqlSession.deleteEntity
(DbEntityOperation operation) protected void
SimpleDbSqlSession.deleteEntity
(DbEntityOperation operation) protected void
DbSqlSession.entityDeletePerformed
(DbEntityOperation operation, int rowsAffected, org.apache.ibatis.exceptions.PersistenceException failure) protected void
DbSqlSession.entityInsertPerformed
(DbEntityOperation operation, int rowsAffected, org.apache.ibatis.exceptions.PersistenceException failure) protected void
DbSqlSession.entityUpdatePerformed
(DbEntityOperation operation, int rowsAffected, org.apache.ibatis.exceptions.PersistenceException failure) protected void
DbSqlSession.insertEntity
(DbEntityOperation operation) protected void
SimpleDbSqlSession.insertEntity
(DbEntityOperation operation) protected void
BatchDbSqlSession.updateEntity
(DbEntityOperation operation) protected void
SimpleDbSqlSession.updateEntity
(DbEntityOperation operation)