I have tasks that have a timeout limit, I want to determine how much execution time did those tasks get before they were forced to terminate?
e.g. if a task spent all its time waiting on queue because there was no avaialble thread it would have execution time of zero.
Is the best approach to sub class ThreadPoolExecutor
and override beforeExecute
and afterExecute
, if so, how?
Better you can code inside call method itself.
for Ex.
This code wont take waiting time and also it will find only computation time.