Add WebSocketTransportRegistration

Issue: SPR-11527
This commit is contained in:
Rossen Stoyanchev
2014-03-24 16:12:40 -04:00
parent 545c4effb1
commit 1e9960e1ce
8 changed files with 218 additions and 17 deletions

View File

@@ -58,7 +58,7 @@ public class WebMvcStompEndpointRegistryTests {
this.userSessionRegistry = new DefaultUserSessionRegistry();
this.messageBrokerRegistry = new MessageBrokerRegistry(inChannel, outChannel);
TaskScheduler taskScheduler = Mockito.mock(TaskScheduler.class);
this.registry = new WebMvcStompEndpointRegistry(webSocketHandler, userSessionRegistry,
this.registry = new WebMvcStompEndpointRegistry(webSocketHandler, transportRegistration, userSessionRegistry,
taskScheduler, messageBrokerRegistry);
}