Counting number of threads in clojure

Viewed 53

I am new to clojure and am performing multi-threading over a large dataset. I need to look at the number of threads running by the program so that I may control the processing of the file. Is there a way to get a graphical representation of the threads and sub-threads that a clojure program is running? If not a graphical representation at least the number of threads being run by the program ?

1 Answers

nevermind i used Thread/activeCount

Related