Uses of Interface
org.jooq.TransactionListener
Packages that use TransactionListener
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
-
Uses of TransactionListener in org.jooq
Methods in org.jooq that return TransactionListenerModifier and TypeMethodDescription@NotNull TransactionListener
TransactionListenerProvider.provide()
Provide anTransactionListener
instance.Methods in org.jooq with parameters of type TransactionListenerModifier and TypeMethodDescription@NotNull Configuration
Configuration.derive(TransactionListener... newTransactionListeners)
Create a derived configuration from this one, with new transaction listeners.@NotNull Configuration
Configuration.deriveAppending(TransactionListener... newTransactionListeners)
Create a derived configuration from this one, with appended transaction listeners.@NotNull Configuration
Configuration.set(TransactionListener... newTransactionListeners)
Change this configuration to hold new transaction listeners.@NotNull Configuration
Configuration.setAppending(TransactionListener... newTransactionListeners)
Change this configuration by appending new transaction listeners. -
Uses of TransactionListener in org.jooq.impl
Classes in org.jooq.impl that implement TransactionListenerModifier and TypeClassDescriptionclass
ATransactionListener
that allows for functional composition.class
A publicly available default implementation ofTransactionListener
.Methods in org.jooq.impl that return TransactionListenerMethods in org.jooq.impl with parameters of type TransactionListenerModifier and TypeMethodDescriptionAbstractConfiguration.derive(TransactionListener... newTransactionListeners)
AbstractConfiguration.deriveAppending(TransactionListener... newTransactionListeners)
static TransactionListenerProvider[]
DefaultTransactionListenerProvider.providers(TransactionListener... listeners)
Convenience method to construct an array ofDefaultTransactionListenerProvider
from an array ofTransactionListener
instances.AbstractConfiguration.set(TransactionListener... newTransactionListeners)
AbstractConfiguration.setAppending(TransactionListener... newTransactionListeners)
void
DefaultConfiguration.setTransactionListener(TransactionListener... newTransactionListeners)
Constructors in org.jooq.impl with parameters of type TransactionListenerModifierConstructorDescriptionCreate a new provider instance from an argument listener.