// Launch the wave handling into JRebirth Thread Pool
} else if (runType != null && runType == RunType.JTP) {
JRebirth.runIntoJTP(waveHandlerRunnable);
} else {
// Otherwise we can perform it right now into the current thread (JRebirthThread - JIT)
waveHandlerRunnable.run();
}
}
/**