001package com.avaje.ebean; 002 003/** 004 * Administrative control of AutoTune during runtime. 005 */ 006public interface AutoTune { 007 008 /** 009 * Fire a garbage collection (hint to the JVM). Assuming garbage collection 010 * fires this will gather remaining usage profiling information. 011 */ 012 void collectProfiling(); 013 014}