#1183 - ENH: Add support for transaction profiling

This commit is contained in:
rob bygrave
2017-10-25 01:07:00 +13:00
parent 093f82a87f
commit 7ebef51859
46 changed files with 1063 additions and 68 deletions
@@ -0,0 +1,12 @@
package io.ebeaninternal.api;
/**
* Event that adds to a profiling transaction.
*/
public interface SpiProfileTransactionEvent {
/**
* Add the event information to the profiling transaction.
*/
void profile();
}