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

org.infinispan.server.DefaultExitHandler Maven / Gradle / Ivy

There is a newer version: 15.1.3.Final
Show newest version
package org.infinispan.server;

import org.infinispan.commons.util.Version;

/**
 * @author Tristan Tarrant <[email protected]>
 * @since 10.0
 **/
public class DefaultExitHandler extends ExitHandler {
   @Override
   public void exit(ExitStatus exitStatus) {
      Server.log.serverStopping(Version.getBrandName());
      exitFuture.complete(exitStatus);
      Server.log.serverStopped(Version.getBrandName());
   }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy