From 078da8a28ba8fd9c5c4212634c0d8089fed80ef5 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Sun, 7 Apr 2013 22:36:15 +0200 Subject: [PATCH] [#2388] Replace Configuration's List with an ExecuteListenerProvider to simplify correct and thread-safe client implementations - Added warning as this type might not be in its final state --- jOOQ/src/main/java/org/jooq/ExecuteListenerProvider.java | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/jOOQ/src/main/java/org/jooq/ExecuteListenerProvider.java b/jOOQ/src/main/java/org/jooq/ExecuteListenerProvider.java index 16fe61cef9..33368eab74 100644 --- a/jOOQ/src/main/java/org/jooq/ExecuteListenerProvider.java +++ b/jOOQ/src/main/java/org/jooq/ExecuteListenerProvider.java @@ -40,6 +40,10 @@ import java.util.List; /** * A provider for {@link ExecuteListener} instances. *

+ * WARNING: The design of the ExecuteListener API is + * undergoing change and may be unstable at the current stage of jOOQ 3.0-RC3 + * development. USE AT OWN RISK! + *

* In order to facilitate the lifecycle management of * ExecuteListener instances that are provided to a jOOQ * {@link Configuration}, clients can implement this API. To jOOQ, it is thus