(child, key)
| 7 | // This object keeps track of the sockets that are sent |
| 8 | class SocketListSend extends EventEmitter { |
| 9 | constructor(child, key) { |
| 10 | super(); |
| 11 | this.key = key; |
| 12 | this.child = child; |
| 13 | child.once('exit', () => this.emit('exit', this)); |
| 14 | } |
| 15 | |
| 16 | _request(msg, cmd, swallowErrors, callback) { |
| 17 | const self = this; |