001package io.ebean.config; 002 003/** 004 * Listener for slow query events. 005 */ 006@FunctionalInterface 007public interface SlowQueryListener { 008 009 /** 010 * Process a slow query event. 011 */ 012 void process(SlowQueryEvent event); 013}
001package io.ebean.config; 002 003/** 004 * Listener for slow query events. 005 */ 006@FunctionalInterface 007public interface SlowQueryListener { 008 009 /** 010 * Process a slow query event. 011 */ 012 void process(SlowQueryEvent event); 013}