com.transferwise.common.gracefulshutdown.GracefulShutdownStrategiesRegistry Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tw-graceful-shutdown Show documentation
Show all versions of tw-graceful-shutdown Show documentation
TransferWise Graceful Shutdown - no noise and errors during releases.
package com.transferwise.common.gracefulshutdown;
import java.util.List;
public interface GracefulShutdownStrategiesRegistry {
/**
* Provides all strategies.
*
* Startup events are sent in the order in the list.
*
*
Shutdown events are sent in the reverse order.
*/
List getStrategies();
}