org.babyfish.jimmer.sql.kt.KTriggers.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jimmer-sql-kotlin Show documentation
Show all versions of jimmer-sql-kotlin Show documentation
A revolutionary ORM framework for both java and kotlin
package org.babyfish.jimmer.sql.kt
import org.babyfish.jimmer.kt.toImmutableProp
import org.babyfish.jimmer.meta.ImmutableProp
import org.babyfish.jimmer.meta.ImmutableType
import org.babyfish.jimmer.sql.ast.table.Table
import org.babyfish.jimmer.sql.event.AssociationListener
import org.babyfish.jimmer.sql.event.EntityListener
import java.sql.Connection
import kotlin.reflect.KClass
import kotlin.reflect.KProperty1
interface KTriggers {
fun addEntityListener(entityType: KClass, listener: EntityListener)
fun removeEntityListener(entityType: KClass, listener: EntityListener)
fun addEntityListener(immutableType: ImmutableType? = null, listener: EntityListener<*>)
fun removeEntityListener(immutableType: ImmutableType? = null, listener: EntityListener<*>)
fun addAssociationListener(
prop: KProperty1<*, *>,
listener: AssociationListener
) {
addAssociationListener(prop.toImmutableProp(), listener)
}
fun > removeAssociationListener(
prop: KProperty1<*, *>,
listener: AssociationListener
) {
removeAssociationListener(prop.toImmutableProp(), listener)
}
fun addAssociationListener(prop: ImmutableProp? = null, listener: AssociationListener)
fun removeAssociationListener(prop: ImmutableProp? = null, listener: AssociationListener)
fun fireEntityTableChange(oldRow: Any, newRow: Any, con: Connection? = null, reason: Any? = null)
fun fireMiddleTableDelete(prop: ImmutableProp, sourceId: Any, targetId: Any, con: Connection? = null, reason: Any? = null)
fun fireMiddleTableInsert(prop: ImmutableProp, sourceId: Any, targetId: Any, con: Connection? = null, reason: Any? = null)
fun fireAssociationEvict(prop: ImmutableProp, sourceId: Any, con: Connection? = null, reason: Any? = null)
val isTransaction: Boolean
}