mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
13 lines
226 B
Java
13 lines
226 B
Java
package io.ebeaninternal.api;
|
|
|
|
/**
|
|
* Event that adds to a profiling transaction.
|
|
*/
|
|
public interface SpiProfileTransactionEvent {
|
|
|
|
/**
|
|
* Add the event information to the profiling transaction.
|
|
*/
|
|
void profile();
|
|
}
|