All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.avaje.ebean.AutoTune Maven / Gradle / Ivy

There is a newer version: 8.1.1
Show newest version
package com.avaje.ebean;

/**
 * Administrative control of AutoTune during runtime.
 */
public interface AutoTune {

  /**
   * Fire a garbage collection (hint to the JVM). Assuming garbage collection
   * fires this will gather remaining usage profiling information.
   */
  void collectProfiling();

  /**
   * Output the profiling.
   * 

* When profiling updates are applied to tuning at runtime this reports all tuning and profiling combined. * When profiling is not applied at runtime then this reports the diff report with new and diff entries relative * to the existing tuning. *

*/ void reportProfiling(); }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy