繁体   English   中英

Lambda在Websocket会话中不起作用

[英]Lambda Does Not Work In Websocket Session

我刚遇到一个奇怪的小问题:

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);
}

有人知道为什么lambda表达式在这个实例中不起作用吗? 没有编译错误,没有异常,没有任何东西。 没有调用方法''onMessage''。

我使用Java 1.8.0_65和Tyrus参考实现1.9。

请参阅https://blogs.oracle.com/PavelBucek/entry/websocket_api_1_1_leleased

tldr; 你必须使用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);

为了使用lambdas作为消息处理程序。

根据我的理解, MessageHandler需要是一个@FunctionalInterface来允许lambda表达式,但事实并非如此。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM