Hi,
I am using SwiftNIO ServerBootstrap as a HTTP/HTTPS proxy with connect handlers and I am wondering if there is any option to "clear" handlers for active connection based on some external event?
Because right now, once the handler is created and does initial connect, it may get reused for the same host multiple times. So for these cases I would want something like closeAllConnections method that would cause the handlers to be instantiated again for these connections.
Can I do this without tearing down the entire bootstrap with something like syncShutdownGracefully?
This is not frequent event.
Thanks.