13
0

Enable command execution, force destruction #20

Zusammengeführt
Lixfel hat 1 Commits von executeCommand nach master 2022-03-17 18:13:08 +01:00 zusammengeführt
Nur Änderungen aus Commit e9906c942d werden angezeigt - Alle Commits anzeigen

Datei anzeigen

@ -130,11 +130,15 @@ public class Subserver implements Runnable {
}
}
public void execute(String command) {
writer.println(command);
}
public void stop(){
writer.println("stop");
execute("stop");
try {
if(!process.waitFor(1, TimeUnit.MINUTES))
process.destroy();
process.destroyForcibly();
thread.join();
}catch(InterruptedException e){
logger.log(Level.SEVERE, "Subserver stop interrupted!", e);