Interface ReactiveWebServerFactory
- All Superinterfaces:
WebServerFactory
- All Known Subinterfaces:
ConfigurableReactiveWebServerFactory
- All Known Implementing Classes:
AbstractReactiveWebServerFactory
,JettyReactiveWebServerFactory
,NettyReactiveWebServerFactory
,TomcatReactiveWebServerFactory
,UndertowReactiveWebServerFactory
- Functional Interface:
- This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.
Factory interface that can be used to create a reactive
WebServer
.- Since:
- 2.0.0
- Author:
- Brian Clozel
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptiongetWebServer
(HttpHandler httpHandler) Gets a new fully configured but pausedWebServer
instance.
-
Method Details
-
getWebServer
Gets a new fully configured but pausedWebServer
instance. Clients should not be able to connect to the returned server untilWebServer.start()
is called (which happens when theApplicationContext
has been fully refreshed).- Parameters:
httpHandler
- the HTTP handler in charge of processing requests- Returns:
- a fully configured and started
WebServer
- See Also:
-