[#1191] Deprecate ConfigurationRegistry and replace by equivalent ExecuteListener feature - added some comments

This commit is contained in:
Lukas Eder 2012-03-11 10:26:47 +00:00
parent 5646d17b99
commit 1aa4196968

View File

@ -112,6 +112,9 @@ abstract class AbstractQuery extends AbstractQueryPart implements Query {
configuration = getConfiguration();
}
// [#1191] The following triggers a start event on all listeners.
// This may be used to provide jOOQ with a JDBC connection, in case
// this Query / Configuration was previously deserialised
ExecuteContext ctx = new DefaultExecuteContext(configuration, this);
ExecuteListener listener = new ExecuteListeners(ctx);