Interface ServerOperation.ResponseChannel<M>

Type Parameters:
M - Type of the messages that will be sent through this channel
Enclosing interface:
ServerOperation<P extends ServerOperationParameters<M>,M extends ServerOperationMessage>

public static interface ServerOperation.ResponseChannel<M>
The channel to which the server sends messages to in order to notify the client.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    send(M message)
    Sends a ServerOperationMessage to the client.
  • Method Details

    • send

      void send(M message)
      Sends a ServerOperationMessage to the client.
      Parameters:
      message - the message to be sent