All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.babyfish.jimmer.sql.DraftPreProcessor.kt Maven / Gradle / Ivy

There is a newer version: 0.9.19
Show newest version
package org.babyfish.jimmer.sql

import org.babyfish.jimmer.Draft

/**
 * Before saving draft, give user a chance to modify it.
 *
 * 

This interface is very similar to another interface * [DraftInterceptor], * the differences between the two are as follows: *

    *
  • This interface is more conducive to SQL optimization, but has weaker functions
  • *
  • [DraftInterceptor] has stronger features but is not carp SQL optimized
  • *
*

* * @see DraftInterceptor */ interface DraftPreProcessor { fun beforeSave(draft: D) }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy