Interface ServerSession.MessageListener

    • Method Detail

      • onMessage

        default void onMessage​(ServerSession session,
                               ServerSession sender,
                               ServerMessage message,
                               Promise<java.lang.Boolean> promise)

        Callback invoked when a message is sent.

        Implementers can decide to notify the promise with false to signal that the message should not be further processed, meaning that other session listeners will not be notified and that the message will be discarded for this session.

        Parameters:
        session - the session that will receive the message
        sender - the session that sent the message
        message - the message sent
        promise - the promise to notify whether the processing of the message should continue