001package io.ebean.config; 002 003/** 004 * EXPERIMENTAL: Listener for captured query plans. 005 */ 006@FunctionalInterface 007public interface QueryPlanListener { 008 009 /** 010 * Process the captured query plans. 011 */ 012 void process(QueryPlanCapture capture); 013}