Saman Yousefisohi
Saman Yousefisohi
The `Stop` method would possibly be a good addition to `ContextPool` so it would possible to cancel the context without the need cancel the parent context or return an error...
My current use case for this I want to log the errors as they happen but I don't want to necessarily Stop the pool. Example would be: ``` Go func...
Excellent points, For the case of handling panics I think it wouldn't be a bad idea to add a `PanicCallback` as well and once the callback is invoked we can...