com.avaje.ebeaninternal.api.SpiBackgroundExecutor Maven / Gradle / Ivy
package com.avaje.ebeaninternal.api;
import com.avaje.ebean.BackgroundExecutor;
/**
* Internal Extension to BackgroundExecutor with shutdown.
*/
public interface SpiBackgroundExecutor extends BackgroundExecutor {
/**
* Shutdown any associated thread pools.
*/
void shutdown();
}