All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.undertow.examples.jsrwebsockets.JsrChatWebSocketEndpoint Maven / Gradle / Ivy

The newest version!
package io.undertow.examples.jsrwebsockets;

import jakarta.websocket.OnMessage;
import jakarta.websocket.Session;
import jakarta.websocket.server.ServerEndpoint;

/**
 * @author Stuart Douglas
 */
@ServerEndpoint("/myapp")
public class JsrChatWebSocketEndpoint {

    @OnMessage
    public void message(String message, Session session) {
        for (Session s : session.getOpenSessions()) {
            s.getAsyncRemote().sendText(message);
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy