Uses of Interface
org.jooq.ExecuteListener
-
Packages that use ExecuteListener Package Description org.jooq Theorg.jooq
package contains jOOQ's public API.org.jooq.impl Theorg.jooq.impl
package contains jOOQ's implementation classes.org.jooq.tools Theorg.jooq.tools
package contains jOOQ's public utilities.org.jooq.tools.jdbc Theorg.jooq.tools.jdbc
package contains compatibility classes to bridge between JDBC 4.0 and JDBC 4.1. -
-
Uses of ExecuteListener in org.jooq
Methods in org.jooq that return ExecuteListener Modifier and Type Method Description ExecuteListener
ExecuteListenerProvider. provide()
Provide anExecuteListener
instance.Methods in org.jooq with parameters of type ExecuteListener Modifier and Type Method Description Configuration
Configuration. derive(ExecuteListener... newExecuteListeners)
Create a derived configuration from this one, with new execute listeners.Configuration
Configuration. set(ExecuteListener... newExecuteListeners)
Change this configuration to hold a new execute listeners. -
Uses of ExecuteListener in org.jooq.impl
Classes in org.jooq.impl that implement ExecuteListener Modifier and Type Class Description class
CallbackExecuteListener
AnExecuteListener
that allows for functional composition.class
DefaultExecuteListener
A publicly available default implementation ofExecuteListener
.Methods in org.jooq.impl that return ExecuteListener Modifier and Type Method Description ExecuteListener
DefaultExecuteListenerProvider. provide()
Methods in org.jooq.impl with parameters of type ExecuteListener Modifier and Type Method Description Configuration
DefaultConfiguration. derive(ExecuteListener... newExecuteListeners)
static ExecuteListenerProvider[]
DefaultExecuteListenerProvider. providers(ExecuteListener... listeners)
Convenience method to construct an array ofDefaultExecuteListenerProvider
from an array ofExecuteListener
instances.Configuration
DefaultConfiguration. set(ExecuteListener... newExecuteListeners)
void
DefaultConfiguration. setExecuteListener(ExecuteListener... newExecuteListeners)
Constructors in org.jooq.impl with parameters of type ExecuteListener Constructor Description DefaultExecuteListenerProvider(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 ExecuteListener Modifier and Type Class Description class
LoggerListener
A defaultExecuteListener
that just logs events to java.util.logging, log4j, or slf4j using theJooqLogger
class
StopWatchListener
A defaultExecuteListener
that just logs events to java.util.logging, log4j, or slf4j using theJooqLogger
. -
Uses of ExecuteListener in org.jooq.tools.jdbc
Methods in org.jooq.tools.jdbc with parameters of type ExecuteListener Modifier and Type Method Description Configuration
MockConfiguration. derive(ExecuteListener... newExecuteListeners)
Configuration
MockConfiguration. set(ExecuteListener... newExecuteListeners)
-