Esempio n. 1
0
 /**
  * Called to create and start a new SQL Listener context
  *
  * @param connection the database connection
  * @param metadata the meta data for that context
  * @param entity the entity for that context
  * @return the newly started context
  */
 protected SQLListenerContextImpl startContext(
     Connection connection, QueryMetadata metadata, RelationalPath<?> entity) {
   SQLListenerContextImpl context = new SQLListenerContextImpl(metadata, connection, entity);
   listeners.start(context);
   return context;
 }