如何知道一个工人何时在 golang 蚂蚁中恐慌
how to know when a worker panic in golang ants
我正在使用 ants as my goroutine pool in my program. This library handles panics of workers itself 并且不会传播恐慌,但我想在我的一名工作人员发生恐慌时抓住它。
有什么方法可以使用 ants
来做到这一点,或者是否有任何其他库可以替换它?
随着调查的深入,我意识到我可以定义和使用 my own panic handler。它应该在您创建 ants
池时传递给 New
函数。
我正在使用 ants as my goroutine pool in my program. This library handles panics of workers itself 并且不会传播恐慌,但我想在我的一名工作人员发生恐慌时抓住它。
有什么方法可以使用 ants
来做到这一点,或者是否有任何其他库可以替换它?
随着调查的深入,我意识到我可以定义和使用 my own panic handler。它应该在您创建 ants
池时传递给 New
函数。