Class WsSci
java.lang.Object
org.apache.tomcat.websocket.server.WsSci
- All Implemented Interfaces:
ServletContainerInitializer
Registers an interest in any class that is annotated with
ServerEndpoint
so that Endpoint can be published
via the WebSocket server.-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
onStartup
(Set<Class<?>> clazzes, ServletContext ctx) Receives notification during startup of a web application of the classes within the web application that matched the criteria defined via theHandlesTypes
annotation.
-
Constructor Details
-
WsSci
public WsSci()
-
-
Method Details
-
onStartup
Description copied from interface:jakarta.servlet.ServletContainerInitializer
Receives notification during startup of a web application of the classes within the web application that matched the criteria defined via theHandlesTypes
annotation.- Specified by:
onStartup
in interfaceServletContainerInitializer
- Parameters:
clazzes
- The (possibly null) set of classes that met the specified criteriactx
- The ServletContext of the web application in which the classes were discovered- Throws:
ServletException
- If an error occurs
-