[#786] Document thread-safety facts in Javadoc

This commit is contained in:
Lukas Eder 2011-08-06 16:41:04 +00:00
parent fcdc5c8818
commit 6be542e7f5

View File

@ -117,6 +117,10 @@ import org.jooq.util.oracle.OracleFactory;
* <code><pre>
* Condition condition = new Factory().exists(new Factory().select(...));
* </pre></code>
* <p>
* A <code>Factory</code> holds a reference to a JDBC {@link Connection} and
* operates upon that connection. This means, that a <code>Factory</code> is
* <i>not</i> thread-safe, since a JDBC Connection is not thread-safe either.
*
* @author Lukas Eder
*/