On Wed, Aug 20, 2014 at 10:58 PM, <
ad...@zemplex.com> wrote:
> Why do the sockets keep working after the 'connection' event handler
> returns?
Because the server keeps references to all its connections (until they
close). And the (internal) epoll loop keeps a reference to the server,
because it is attached and listening.
> Given that they do keep working indefinitely,
They only keep working until they close.
> what must I do to ensure they
> get garbage collected once closed?
Nothing.