bind method

ServerIO bind(
  1. Engine engine
)

Implementation

ServerIO bind(Engine engine) {
  this.engine = engine;
  this.engine!.on('connection', onConnection);
  return this;
}