Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Lambda Does Not Work In Websocket Session

I just encountered a peculiar little problem:

javax.websocket.Session session = //...
// this works
newSession.addMessageHandler(new MessageHandler.Whole<String>() {

    @Override
    public void onMessage(String message) {
        MyWebSocket.this.onMessage(message);
    }
});
// these don't work
newSession.addMessageHandler((MessageHandler.Whole<String>) MyWebSocket.this::onMessage);
newSession.addMessageHandler((MessageHandler.Whole<String>) message -> MyWebSocket.this.onMessage(message));


void onMessage(String message) {
    System.out.println(message);
}

Does anybody know why lambda expressions won't work in this instance? There is no compile error, no exception, no nothing. The method ''onMessage'' is just not called.

I use Java 1.8.0_65 and the Tyrus reference implementation 1.9.

like image 763
Steffi S. Avatar asked Nov 09 '22 19:11

Steffi S.


1 Answers

please see https://blogs.oracle.com/PavelBucek/entry/websocket_api_1_1_released

tldr; you have to use Session#addMessageHandler(Class<T> clazz, MessageHandler.Whole<T> handler)

/**
* Register to handle to incoming messages in this conversation. A maximum of one message handler per
* native websocket message type (text, binary, pong) may be added to each Session. I.e. a maximum
* of one message handler to handle incoming text messages a maximum of one message handler for
* handling incoming binary messages, and a maximum of one for handling incoming pong
* messages. For further details of which message handlers handle which of the native websocket
* message types please see {@link MessageHandler.Whole} and {@link MessageHandler.Partial}.
* Adding more than one of any one type will result in a runtime exception.
*
* @param clazz   type of the message processed by message handler to be registered.
* @param handler whole message handler to be added.
* @throws IllegalStateException if there is already a MessageHandler registered for the same native
*                               websocket message type as this handler.
*/
public void addMessageHandler(Class<T> clazz, MessageHandler.Whole<T> handler);

in order to use lambdas as message handers.

like image 53
Pavel Bucek Avatar answered Nov 14 '22 23:11

Pavel Bucek