com.transferwise.common.gracefulshutdown.GracefulShutdownIgnore 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.
The newest version!
package com.transferwise.common.gracefulshutdown;
import com.transferwise.common.gracefulshutdown.strategies.ExecutorServiceGracefulShutdownStrategy;
import com.transferwise.common.gracefulshutdown.strategies.TaskSchedulersGracefulShutdownStrategy;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
/**
* Annotated Beans will not be shutdown gracefully by service.
*
* Affects: {@link ExecutorServiceGracefulShutdownStrategy} and {@link TaskSchedulersGracefulShutdownStrategy}
*
*/
@Retention(RetentionPolicy.RUNTIME)
public @interface GracefulShutdownIgnore {
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy