Package io.ebean.event
Interface BulkTableEventListener
-
public interface BulkTableEventListener
Listen for bulk table events that occur.These events can be triggered via
DB.externalModification(String, boolean, boolean, boolean)
or automatically determined from Ebean bulk update statements.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
process(BulkTableEvent bulkTableEvent)
Process the event.Set<String>
registeredTables()
Return the tables that this listener is interested in.
-
-
-
Method Detail
-
registeredTables
Set<String> registeredTables()
Return the tables that this listener is interested in.
-
process
void process(BulkTableEvent bulkTableEvent)
Process the event.
-
-