* Transport abstract constructor. * * @param {Object} opts - options * @protected
(opts)
| 866 | * @protected |
| 867 | */ |
| 868 | function Transport(opts) { |
| 869 | var _this2; |
| 870 | _classCallCheck(this, Transport); |
| 871 | _this2 = _super2.call(this); |
| 872 | _this2.writable = false; |
| 873 | installTimerFunctions(_assertThisInitialized(_this2), opts); |
| 874 | _this2.opts = opts; |
| 875 | _this2.query = opts.query; |
| 876 | _this2.socket = opts.socket; |
| 877 | return _this2; |
| 878 | } |
| 879 | /** |
| 880 | * Emits an error. |
| 881 | * |
nothing calls this directly
no test coverage detected