I'm trying to understand some of the net code and ran into `_final` and `_destroy`. [`_final` uses a `ShutdownWrap`](https://github.com/nodejs/node/blob/master/lib/net.js#L400) while [`_destroy` does a `handle.close()`](https://github.com/nodejs/node/blob/master/lib/net.js#L651) What is the difference?
I'm trying to understand some of the net code and ran into
_finaland_destroy._finaluses aShutdownWrapwhile_destroydoes ahandle.close()What is the difference?