org.kiwiproject.dropwizard.util.startup.ExecutionStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dropwizard-service-utilities Show documentation
Show all versions of dropwizard-service-utilities Show documentation
Set of utilities to aid in setting up Dropwizard services
package org.kiwiproject.dropwizard.util.startup;
/**
* Defines a strategy used in {@link SystemExecutioner} to terminate the JVM.
*/
public interface ExecutionStrategy {
/**
* Performs the exit operation.
*/
void exit();
}