Interface BeforeSaveCallback<T>

All Superinterfaces:
EntityCallback<T>
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 BeforeSaveCallback<T> extends EntityCallback<T>
Entity callback triggered before save of a row.
Since:
2.2
Author:
Mark Paluch
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    onBeforeSave(T entity, com.datastax.oss.driver.api.core.CqlIdentifier tableName, com.datastax.oss.driver.api.core.cql.Statement<?> statement)
    Entity callback method invoked before a domain object is saved.
  • Method Details

    • onBeforeSave

      T onBeforeSave(T entity, com.datastax.oss.driver.api.core.CqlIdentifier tableName, com.datastax.oss.driver.api.core.cql.Statement<?> statement)
      Entity callback method invoked before a domain object is saved. Can return either the same of a modified instance of the domain object and can modify Statement contents. This method is called after converting the entity to Statement so effectively the row is used as outcome of invoking this callback.
      Parameters:
      entity - the domain object to save.
      tableName - name of the table.
      statement - Statement representing the entity operation.
      Returns:
      the domain object to be persisted.