He-Pin commented on code in PR #924: URL: https://github.com/apache/incubator-pekko/pull/924#discussion_r1446414755
########## actor/src/main/scala/org/apache/pekko/dispatch/ThreadPoolBuilder.scala: ########## @@ -176,6 +176,9 @@ object MonitorableThreadFactory { private[pekko] class PekkoForkJoinWorkerThread(_pool: ForkJoinPool) extends ForkJoinWorkerThread(_pool) with BlockContext { + + override def onTermination(exception: Throwable): Unit = super.onTermination(exception) Review Comment: That's a hook where we can do aop around it, override it in subclass can limit the scope. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@pekko.apache.org For additional commands, e-mail: notifications-h...@pekko.apache.org