All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.transferwise.common.gracefulshutdown.GracefulShutdownStrategy Maven / Gradle / Ivy

There is a newer version: 2.14.5
Show newest version
package com.transferwise.common.gracefulshutdown;

@SuppressWarnings("unused")
public interface GracefulShutdownStrategy {

  /**
   * Called, when application is considered as started.
   */
  default void applicationStarted() {
  }

  /**
   * Return true, when application is ready to serve traffic.
   */
  default boolean isReady() {
    return true;
  }

  /**
   * Called when a signal for requesting a shutdown has received.
   */
  default void prepareForShutdown() {
  }

  /**
   * Application is not stopped, before this returns true.
   */
  boolean canShutdown();

  /**
   * Called, when decision has made to finally stop the application.
   */
  default void applicationTerminating() {
  }

  /**
   * Called right after client reaction time has passed from the start of the shutdown.
   */
  default void clientReactionTimePassed() {
  }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy