Interface StompEndpointRegistry
- All Known Implementing Classes:
WebMvcStompEndpointRegistry
public interface StompEndpointRegistry
A contract for registering STOMP over WebSocket endpoints.
- Since:
- 4.0
- Author:
- Rossen Stoyanchev
-
Method Summary
Modifier and TypeMethodDescriptionaddEndpoint
(String... paths) Register a STOMP over WebSocket endpoint at the given mapping path.setErrorHandler
(StompSubProtocolErrorHandler errorHandler) Configure a handler for customizing or handling STOMP ERROR frames to clients.void
setOrder
(int order) Set the order of theHandlerMapping
used for STOMP endpoints relative to other Spring MVC handler mappings.void
setUrlPathHelper
(UrlPathHelper urlPathHelper) Configure a customizedUrlPathHelper
for the STOMP endpointHandlerMapping
.
-
Method Details
-
addEndpoint
Register a STOMP over WebSocket endpoint at the given mapping path. -
setOrder
void setOrder(int order) Set the order of theHandlerMapping
used for STOMP endpoints relative to other Spring MVC handler mappings.By default this is set to 1.
-
setUrlPathHelper
Configure a customizedUrlPathHelper
for the STOMP endpointHandlerMapping
. -
setErrorHandler
Configure a handler for customizing or handling STOMP ERROR frames to clients.- Parameters:
errorHandler
- the error handler- Since:
- 4.2
-