Example usage for org.springframework.integration.websocket.outbound WebSocketOutboundMessageHandler WebSocketOutboundMessageHandler

List of usage examples for org.springframework.integration.websocket.outbound WebSocketOutboundMessageHandler WebSocketOutboundMessageHandler

Introduction

In this page you can find the example usage for org.springframework.integration.websocket.outbound WebSocketOutboundMessageHandler WebSocketOutboundMessageHandler.

Prototype

public WebSocketOutboundMessageHandler(IntegrationWebSocketContainer webSocketContainer) 

Source Link

Usage

From source file:com.nayidisha.slowglow.config.SpringMessagingConfig.java

@Bean
@ServiceActivator(inputChannel = "webSocketOutputChannel")
public MessageHandler webSocketOutboundMessageHandler() {
    return new WebSocketOutboundMessageHandler(serverWebSocketContainer());
}