Dear Sirs and Madams! Let say I have 5 apps working on same mysql database through class/object DatabaseManager, whose responsibility is to insert/change/delete records from tables in some database (and all other db related operations). This class/object heavly uses jooq for communicating with database. Now, does jooq itself has some sort of mechanismus, so my DatabaseManager gets notified about database change. Let's say, if I add record in some table in some database through this class, does jooq support "callback" from mysql that record has been added? Or this functionality needs to be implemented from scratch in DatabaseManager itself?
Sincerely, Marko
