5

ちょっと変わった問題に遭遇しました:

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

このインスタンスでラムダ式が機能しない理由を知っている人はいますか? コンパイルエラーも例外も何もありません。メソッド「onMessage」が呼び出されていません。

私は Java 1.8.0_65 と Tyrus 参照実装 1.9 を使用しています。

4

2 に答える 2

3

https://blogs.oracle.com/PavelBucek/entry/websocket_api_1_1_releasedを参照してください

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

ラムダをメッセージ ハンドラとして使用するため。

于 2016-03-01T10:19:31.860 に答える