org.springframework.web.socket.messaging.StompSubProtocolErrorHandler Java Examples

The following examples show how to use org.springframework.web.socket.messaging.StompSubProtocolErrorHandler. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: WebMvcStompEndpointRegistry.java    From spring-analysis-note with MIT License 4 votes vote down vote up
@Override
public WebMvcStompEndpointRegistry setErrorHandler(StompSubProtocolErrorHandler errorHandler) {
	this.stompHandler.setErrorHandler(errorHandler);
	return this;
}
 
Example #2
Source File: WebMvcStompEndpointRegistry.java    From java-technology-stack with MIT License 4 votes vote down vote up
@Override
public WebMvcStompEndpointRegistry setErrorHandler(StompSubProtocolErrorHandler errorHandler) {
	this.stompHandler.setErrorHandler(errorHandler);
	return this;
}
 
Example #3
Source File: WebMvcStompEndpointRegistry.java    From spring4-understanding with Apache License 2.0 4 votes vote down vote up
@Override
public WebMvcStompEndpointRegistry setErrorHandler(StompSubProtocolErrorHandler errorHandler) {
	this.stompHandler.setErrorHandler(errorHandler);
	return this;
}
 
Example #4
Source File: AbstractSessionWebSocketMessageBrokerConfigurer.java    From spring-session with Apache License 2.0 4 votes vote down vote up
@Override
public WebMvcStompEndpointRegistry setErrorHandler(StompSubProtocolErrorHandler errorHandler) {
	return this.registry.setErrorHandler(errorHandler);
}
 
Example #5
Source File: StompEndpointRegistry.java    From spring-analysis-note with MIT License 2 votes vote down vote up
/**
 * Configure a handler for customizing or handling STOMP ERROR frames to clients.
 * @param errorHandler the error handler
 * @since 4.2
 */
WebMvcStompEndpointRegistry setErrorHandler(StompSubProtocolErrorHandler errorHandler);
 
Example #6
Source File: StompEndpointRegistry.java    From java-technology-stack with MIT License 2 votes vote down vote up
/**
 * Configure a handler for customizing or handling STOMP ERROR frames to clients.
 * @param errorHandler the error handler
 * @since 4.2
 */
WebMvcStompEndpointRegistry setErrorHandler(StompSubProtocolErrorHandler errorHandler);
 
Example #7
Source File: StompEndpointRegistry.java    From spring4-understanding with Apache License 2.0 2 votes vote down vote up
/**
 * Configure a handler for customizing or handling STOMP ERROR frames to clients.
 * @param errorHandler the error handler
 * @since 4.2
 */
WebMvcStompEndpointRegistry setErrorHandler(StompSubProtocolErrorHandler errorHandler);