send method

Socket send(
  1. List args
)

Sends a message event.

@return {Socket} self @api public

Implementation

Socket send(List args) {
  emit('message', args);
  return this;
}