com.nike.riposte.server.hooks.PreServerStartupHook Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riposte-spi Show documentation
Show all versions of riposte-spi Show documentation
Riposte module riposte-spi
package com.nike.riposte.server.hooks;
import io.netty.bootstrap.ServerBootstrap;
/**
* Hook for pre server startup events.
*/
public interface PreServerStartupHook {
void executePreServerStartupHook(ServerBootstrap bootstrap);
}