handleData method

  1. @protected
void handleData(
  1. Uint8List data,
  2. Channel channel
)
inherited

Processes incoming data from a client.

Override this method to add custom message processing, logging, or filtering before the standard onMessage pipeline.

Implementation

@protected
void handleData(Uint8List data, Channel channel) {
  onMessage(data, channel);
}