Interface OptimisticLockUtils.UpdateOperation<T>

Type Parameters:
T - The type of entity you wish to update.
All Known Subinterfaces:
OptimisticLockUtils.ValidatedUpdateOperation<T>
Enclosing class:
OptimisticLockUtils

public static interface OptimisticLockUtils.UpdateOperation<T>
Performs an update operation on an entity within an optimistic lock aware transaction.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    update(T t)
    Perform the update operations on the entity.
  • Method Details

    • update

      void update(T t)
      Perform the update operations on the entity.
      Parameters:
      t - The entity as represented in the database during the current transaction.