Example usage for org.springframework.web.socket.config.annotation StompEndpointRegistry addEndpoint

List of usage examples for org.springframework.web.socket.config.annotation StompEndpointRegistry addEndpoint

Introduction

In this page you can find the example usage for org.springframework.web.socket.config.annotation StompEndpointRegistry addEndpoint.

Prototype

StompWebSocketEndpointRegistration addEndpoint(String... paths);

Source Link

Document

Register a STOMP over WebSocket endpoint at the given mapping path.

Usage

From source file:net.bluemix.questions.data.AbstractWebSocketConfig.java

@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
    registry.addEndpoint("/api/questions").withSockJS();
}

From source file:org.bonitasoft.web.designer.config.WebSocketConfig.java

@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
    registry.addEndpoint("/websockets").withSockJS();
}

From source file:pzalejko.iot.client.web.ws.WebSocketConfig.java

@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
    registry.addEndpoint(APP_GET_TOPIC).withSockJS();
}

From source file:nl.pinniq.web.config.websocket.WebSocketConfiguration.java

@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
    registry.addEndpoint("/progress").withSockJS();
}

From source file:com.consol.citrus.admin.WebSocketConfig.java

@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
    registry.addEndpoint("/logging").withSockJS();
}

From source file:configuration.WebSocketConfig.java

@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
    registry.addEndpoint("/end").withSockJS();
}

From source file:uk.urchinly.sabi.WebSocketConfig.java

@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
    registry.addEndpoint("/stomp").setAllowedOrigins("*").withSockJS();
}

From source file:com.ethercamp.harmony.config.WebSocketConfig.java

@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
    registry.addEndpoint("/websocket").withSockJS();
}

From source file:com.revo.deployr.rbroker.example.config.WebSocketConfig.java

@Override
public void registerStompEndpoints(StompEndpointRegistry registry) {
    registry.addEndpoint("/fraudengine").withSockJS();
}

From source file:docs.websocket.WebSocketConfig.java

public void registerStompEndpoints(StompEndpointRegistry registry) {
    registry.addEndpoint("/messages").withSockJS();
}