com.nike.riposte.server.hooks.PostServerStartupHook 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 com.nike.riposte.server.config.ServerConfig;
import io.netty.channel.Channel;
/**
* Hook for post server startup events.
*/
public interface PostServerStartupHook {
void executePostServerStartupHook(ServerConfig serverConfig, Channel channel);
}