com.transferwise.common.gracefulshutdown.DefaultGracefulShutdownStrategiesRegistry 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 java.util.List;
import lombok.Getter;
import lombok.Setter;
import lombok.extern.slf4j.Slf4j;
import org.springframework.beans.factory.annotation.Autowired;
@Slf4j
public class DefaultGracefulShutdownStrategiesRegistry implements GracefulShutdownStrategiesRegistry {
@Autowired
@Getter
@Setter
private List strategies;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy