(cb)
| 53972 | get [kConnected]() { |
| 53973 | return !!this[kSocket] && !this[kConnecting] && !this[kSocket].destroyed; |
| 53974 | } |
| 53975 | get [kBusy]() { |
| 53976 | const socket = this[kSocket]; |
| 53977 | return socket && (socket[kReset] || socket[kWriting] || socket[kBlocking]) || this[kSize] >= (this[kPipelining] || 1) || this[kPending] > 0; |
| 53978 | } |
| 53979 | /* istanbul ignore: only used for test */ |
| 53980 | [kConnect](cb) { |