Uses of Class
org.camunda.bpm.engine.impl.db.entitymanager.operation.DbOperation
Packages that use DbOperation
Package
Description
-
Uses of DbOperation in org.camunda.bpm.engine.impl.batch
Methods in org.camunda.bpm.engine.impl.batch with parameters of type DbOperation -
Uses of DbOperation in org.camunda.bpm.engine.impl.cmd
Methods in org.camunda.bpm.engine.impl.cmd with parameters of type DbOperation -
Uses of DbOperation in org.camunda.bpm.engine.impl.db
Fields in org.camunda.bpm.engine.impl.db with type parameters of type DbOperationModifier and TypeFieldDescriptionprotected List<DbOperation>FlushResult.failedOperationsprotected List<DbOperation>FlushResult.remainingOperationsMethods in org.camunda.bpm.engine.impl.db that return types with arguments of type DbOperationModifier and TypeMethodDescriptionFlushResult.getFailedOperations()FlushResult.getRemainingOperations()Methods in org.camunda.bpm.engine.impl.db with parameters of type DbOperationModifier and TypeMethodDescriptionEnginePersistenceLogger.batchingNotSupported(DbOperation operation) voidEnginePersistenceLogger.concurrentModificationFailureIgnored(DbOperation operation) EnginePersistenceLogger.concurrentUpdateDbEntityException(DbOperation operation) voidEnginePersistenceLogger.crdbFailureIgnored(DbOperation operation) EnginePersistenceLogger.crdbTransactionRetryException(DbOperation operation) voidAbstractPersistenceSession.executeDbOperation(DbOperation operation) EnginePersistenceLogger.flushDbOperationException(List<DbOperation> operationsToFlush, DbOperation failedOperation, Throwable e) voidEnginePersistenceLogger.ignoreFailureDuePreconditionNotMet(DbOperation ignoredOperation, String preconditionMessage, DbOperation failedOperation) Method parameters in org.camunda.bpm.engine.impl.db with type arguments of type DbOperationModifier and TypeMethodDescriptionvoidEnginePersistenceLogger.databaseFlushSummary(Collection<DbOperation> operations) PersistenceSession.executeDbOperations(List<DbOperation> operations) Attempts to perform the operations in order and returns a flush result.EnginePersistenceLogger.flushDbOperationException(List<DbOperation> operationsToFlush, DbOperation failedOperation, Throwable e) EnginePersistenceLogger.flushDbOperationUnexpectedException(List<DbOperation> operationsToFlush, Throwable cause) static FlushResultFlushResult.withFailures(List<DbOperation> failedOperations) static FlushResultFlushResult.withFailuresAndRemaining(List<DbOperation> failedOperations, List<DbOperation> remainingOperations) EnginePersistenceLogger.wrongBatchResultsSizeException(List<DbOperation> operationsToFlush) Constructor parameters in org.camunda.bpm.engine.impl.db with type arguments of type DbOperationModifierConstructorDescriptionFlushResult(List<DbOperation> failedOperations, List<DbOperation> remainingOperations) -
Uses of DbOperation in org.camunda.bpm.engine.impl.db.entitymanager
Methods in org.camunda.bpm.engine.impl.db.entitymanager with parameters of type DbOperationModifier and TypeMethodDescriptionprotected booleanDbEntityManager.canIgnoreHistoryModificationFailure(DbOperation dbOperation) Determines if a failed database operation (OptimisticLockingException) on a Historic entity can be ignored.OptimisticLockingListener.failedOperation(DbOperation operation) Signifies that an operation failed due to optimistic locking.protected voidDbEntityManager.handleConcurrentModification(DbOperation dbOperation) Decides if an operation that failed for concurrent modifications can be tolerated, or ifOptimisticLockingExceptionshould be raisedprotected voidDbEntityManager.handleConcurrentModificationCrdb(DbOperation dbOperation) protected voidDbEntityManager.handleConcurrentModificationWithRolledBackTransaction(DbOperation dbOperation) Method parameters in org.camunda.bpm.engine.impl.db.entitymanager with type arguments of type DbOperationModifier and TypeMethodDescriptionprotected voidDbEntityManager.flushDbOperations(List<DbOperation> operationsToFlush, List<DbOperation> allOperations) -
Uses of DbOperation in org.camunda.bpm.engine.impl.db.entitymanager.operation
Subclasses of DbOperation in org.camunda.bpm.engine.impl.db.entitymanager.operationModifier and TypeClassDescriptionclassA bulk operationclassAn operation on a single DbEntityFields in org.camunda.bpm.engine.impl.db.entitymanager.operation declared as DbOperationMethods in org.camunda.bpm.engine.impl.db.entitymanager.operation that return DbOperationMethods in org.camunda.bpm.engine.impl.db.entitymanager.operation that return types with arguments of type DbOperationMethods in org.camunda.bpm.engine.impl.db.entitymanager.operation with parameters of type DbOperationMethod parameters in org.camunda.bpm.engine.impl.db.entitymanager.operation with type arguments of type DbOperationModifier and TypeMethodDescriptionprotected voidDbOperationManager.addSortedInserts(List<DbOperation> flush) Adds the insert operations to the flush (in correct order).protected voidDbOperationManager.addSortedModifications(List<DbOperation> flush) Adds a correctly ordered list of UPDATE and DELETE operations to the flush.protected voidDbOperationManager.addSortedModificationsForType(Class<?> type, SortedSet<DbEntityOperation> preSortedOperations, List<DbOperation> flush) protected voidDbOperationManager.determineDependencies(List<DbOperation> flush) -
Uses of DbOperation in org.camunda.bpm.engine.impl.db.sql
Methods in org.camunda.bpm.engine.impl.db.sql with parameters of type DbOperationModifier and TypeMethodDescriptionprotected booleanDbSqlSession.isConcurrentModificationException(DbOperation failedOperation, org.apache.ibatis.exceptions.PersistenceException cause) protected voidBatchDbSqlSession.postProcessOperationPerformed(DbOperation operation, int rowsAffected, org.apache.ibatis.exceptions.PersistenceException failure) Method parameters in org.camunda.bpm.engine.impl.db.sql with type arguments of type DbOperationModifier and TypeMethodDescriptionBatchDbSqlSession.executeDbOperations(List<DbOperation> operations) SimpleDbSqlSession.executeDbOperations(List<DbOperation> operations) protected FlushResultBatchDbSqlSession.postProcessBatchFailure(List<DbOperation> operations, org.apache.ibatis.exceptions.PersistenceException exception) protected FlushResultBatchDbSqlSession.postProcessBatchSuccess(List<DbOperation> operations, List<org.apache.ibatis.executor.BatchResult> batchResults) protected voidBatchDbSqlSession.postProcessJdbcBatchResult(Iterator<DbOperation> operationsIt, int[] statementResults, org.apache.ibatis.exceptions.PersistenceException failure, List<DbOperation> failedOperations) This method can be called with three cases: Case 1: Success.protected voidBatchDbSqlSession.postProcessJdbcBatchResult(Iterator<DbOperation> operationsIt, int[] statementResults, org.apache.ibatis.exceptions.PersistenceException failure, List<DbOperation> failedOperations) This method can be called with three cases: Case 1: Success. -
Uses of DbOperation in org.camunda.bpm.engine.impl.history.event
Methods in org.camunda.bpm.engine.impl.history.event that return types with arguments of type DbOperationModifier and TypeMethodDescriptionMap<Class<? extends DbEntity>,DbOperation> HistoricDecisionInstanceManager.deleteHistoricDecisionsByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) -
Uses of DbOperation in org.camunda.bpm.engine.impl.jobexecutor.historycleanup
Fields in org.camunda.bpm.engine.impl.jobexecutor.historycleanup with type parameters of type DbOperationModifier and TypeFieldDescriptionprotected Map<Class<? extends DbEntity>,DbOperation> HistoryCleanupRemovalTime.deleteOperationsMethods in org.camunda.bpm.engine.impl.jobexecutor.historycleanup that return DbOperationModifier and TypeMethodDescriptionprotected DbOperationHistoryCleanupRemovalTime.performBatchCleanup()protected DbOperationHistoryCleanupRemovalTime.performTaskMetricsCleanup()Methods in org.camunda.bpm.engine.impl.jobexecutor.historycleanup that return types with arguments of type DbOperationModifier and TypeMethodDescriptionprotected Map<Class<? extends DbEntity>,DbOperation> HistoryCleanupRemovalTime.performDmnCleanup()protected Map<Class<? extends DbEntity>,DbOperation> HistoryCleanupRemovalTime.performProcessCleanup() -
Uses of DbOperation in org.camunda.bpm.engine.impl.persistence.entity
Methods in org.camunda.bpm.engine.impl.persistence.entity that return DbOperationModifier and TypeMethodDescriptionAttachmentManager.deleteAttachmentsByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) AuthorizationManager.deleteAuthorizationsByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) ByteArrayManager.deleteByteArraysByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) CommentManager.deleteCommentsByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) HistoricExternalTaskLogManager.deleteExternalTaskLogByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) HistoricActivityInstanceManager.deleteHistoricActivityInstancesByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) HistoricBatchManager.deleteHistoricBatchesByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) HistoricDetailManager.deleteHistoricDetailsByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) HistoricIdentityLinkLogManager.deleteHistoricIdentityLinkLogByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) HistoricIncidentManager.deleteHistoricIncidentsByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) HistoricTaskInstanceManager.deleteHistoricTaskInstancesByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) HistoricVariableInstanceManager.deleteHistoricVariableInstancesByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) HistoricJobLogManager.deleteJobLogByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) UserOperationLogManager.deleteOperationLogByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize) MeterLogManager.deleteTaskMetricsByRemovalTime(Date currentTimestamp, Integer timeToLive, int minuteFrom, int minuteTo, int batchSize) Methods in org.camunda.bpm.engine.impl.persistence.entity that return types with arguments of type DbOperationModifier and TypeMethodDescriptionMap<Class<? extends DbEntity>,DbOperation> HistoricProcessInstanceManager.deleteHistoricProcessInstancesByRemovalTime(Date removalTime, int minuteFrom, int minuteTo, int batchSize)