IOHandler.prototype.destroy = function()

in lib/kcl/io_handler.js [42:46]


IOHandler.prototype.destroy = function() {
  this._readlineInterface.removeListener('line', this._onInputLineCallback);
  this._readlineInterface.removeListener('close', this._onInputCloseCallback);
  this._readlineInterface.close();
};