Interface BusinessDataUpdater<T>

Type Parameters:
T - the value type of the Business Data value
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface BusinessDataUpdater<T>
Interface that is used to provide an update method See BusinessDataRepository.update(Object, BusinessDataUpdater)
Since:
6.3.0
API:
This is a public API.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    update(T persistedValue)
     
  • Method Details

    • update

      void update(T persistedValue)
      Parameters:
      persistedValue - the Business Data value which is currently persisted in the database
      API:
      This public API is available in Java.