handleData method
- Uint8List data,
- 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);
}