Uses of Interface
org.jooq.ExecuteListener
Packages that use ExecuteListener
Package
Description
This package contains jOOQ's public API.
This package contains jOOQ's implementation classes.
This package contains jOOQ's public utilities.
-
Uses of ExecuteListener in org.jooq
Methods in org.jooq that return ExecuteListenerModifier and TypeMethodDescription@NotNull ExecuteListener
ExecuteListenerProvider.provide()
Provide anExecuteListener
instance.Methods in org.jooq with parameters of type ExecuteListenerModifier and TypeMethodDescription@NotNull Configuration
Configuration.derive(ExecuteListener... newExecuteListeners)
Create a derived configuration from this one, with new execute listeners.@NotNull Configuration
Configuration.deriveAppending(ExecuteListener... newExecuteListeners)
Create a derived configuration from this one, with appended execute listeners.@NotNull Configuration
Configuration.set(ExecuteListener... newExecuteListeners)
Change this configuration to hold new execute listeners.@NotNull Configuration
Configuration.setAppending(ExecuteListener... newExecuteListeners)
Change this configuration by appending new execute listeners. -
Uses of ExecuteListener in org.jooq.impl
Classes in org.jooq.impl that implement ExecuteListenerModifier and TypeClassDescriptionclass
AnExecuteListener
that allows for functional composition.class
A publicly available default implementation ofExecuteListener
.Methods in org.jooq.impl that return ExecuteListenerMethods in org.jooq.impl with parameters of type ExecuteListenerModifier and TypeMethodDescriptionAbstractConfiguration.derive(ExecuteListener... newExecuteListeners)
AbstractConfiguration.deriveAppending(ExecuteListener... newExecuteListeners)
static ExecuteListenerProvider[]
DefaultExecuteListenerProvider.providers(ExecuteListener... listeners)
Convenience method to construct an array ofDefaultExecuteListenerProvider
from an array ofExecuteListener
instances.AbstractConfiguration.set(ExecuteListener... newExecuteListeners)
AbstractConfiguration.setAppending(ExecuteListener... newExecuteListeners)
void
DefaultConfiguration.setExecuteListener(ExecuteListener... newExecuteListeners)
Constructors in org.jooq.impl with parameters of type ExecuteListenerModifierConstructorDescriptionDefaultExecuteListenerProvider(ExecuteListener listener)
Create a new provider instance from an argument listener. -
Uses of ExecuteListener in org.jooq.tools
Classes in org.jooq.tools that implement ExecuteListenerModifier and TypeClassDescriptionclass
A defaultExecuteListener
that just logs events to java.util.logging, log4j, or slf4j using theJooqLogger
class
A defaultExecuteListener
that just logs events to java.util.logging, log4j, or slf4j using theJooqLogger
.