Browse Source

Merge pull request #1934 from kylec32:websocket-documentation-remove-deprecated

* pr/1934:
  Fix usage of deprecated functionality in docs
pull/1936/head
Stephane Nicoll 8 years ago
parent
commit
89e2caa4f3
  1. 4
      src/docs/asciidoc/web/websocket.adoc

4
src/docs/asciidoc/web/websocket.adoc

@ -1804,7 +1804,7 @@ user and associate it with subsequent STOMP messages on the same session:
@Override @Override
public void configureClientInboundChannel(ChannelRegistration registration) { public void configureClientInboundChannel(ChannelRegistration registration) {
registration.setInterceptors(new ChannelInterceptorAdapter() { registration.interceptors(new ChannelInterceptor() {
@Override @Override
public Message<?> preSend(Message<?> message, MessageChannel channel) { public Message<?> preSend(Message<?> message, MessageChannel channel) {
StompHeaderAccessor accessor = StompHeaderAccessor accessor =
@ -2063,7 +2063,7 @@ For example to intercept inbound messages from clients:
@Override @Override
public void configureClientInboundChannel(ChannelRegistration registration) { public void configureClientInboundChannel(ChannelRegistration registration) {
registration.setInterceptors(new MyChannelInterceptor()); registration.interceptors(new MyChannelInterceptor());
} }
} }
---- ----

Loading…
Cancel
Save