If my java program wants to execute several perl scripts at various times using threads. Should each thread have its own copy of a ProcessBuilder and Process objects ?
I was thinking that the threads could all share the ProcessBuilder but, i'm not too sure about that.