Open salamanders opened 7 years ago
Are you asking how this could be done, or to have it integrated into the current code?
I'm about to start a Java-8 transition, so if you want that added its going to be a bit.
It is a low priority feature request.
When I call evaluateCrossValidation, I may want to give up after a certain amount of time. Instead of building in some "isRunning" boolean, would it be easier to check in the loops for https://docs.oracle.com/javase/tutorial/essential/concurrency/interrupt.html
if (Thread.interrupted()) {
in key areas?