- All Known Subinterfaces:
- FeatureSupport,- Filter,- Handler,- HttpFeature,- HttpRoute,- HttpRouting,- HttpService,- JsonRpcErrorHandler,- JsonRpcExceptionHandler,- JsonRpcHandler,- JsonRpcService,- Route,- Routing,- StaticContentService
- All Known Implementing Classes:
- AccessLogRoutingFeature,- CoordinatorService,- CorsSupport,- DisabledObserverFeature,- Filters,- GraphQlService,- GrpcRouting,- HelidonFeatureSupport,- Http1Route,- Http2Route,- JaxRsService,- JsonRpcRouting,- MicrometerFeature,- OciMetricsSupport,- OidcFeature,- PrometheusSupport,- SecureHandler,- SecurityHandler,- SecurityHttpFeature,- TyrusRouting,- WsRoute,- WsRouting
public interface ServerLifecycle
Basic server lifecycle operations.
- 
Method SummaryModifier and TypeMethodDescriptiondefault voidafterStart(WebServer webServer) After server start.default voidAfter server stop.default voidBefore server start.
- 
Method Details- 
beforeStartdefault void beforeStart()Before server start.
- 
afterStartAfter server start.- Parameters:
- webServer- the- WebServerthat was started
 
- 
afterStopdefault void afterStop()After server stop.
 
-