コード例 #1
0
ファイル: Launcher.java プロジェクト: Rafal-G/jenkins
 public Void call() throws RuntimeException {
     try {
         ProcessTree.get().killAll(modelEnvVars);
     } catch (InterruptedException e) {
         // we are asked to terminate early by the caller, so no need to do anything
     }
     return null;
 }
コード例 #2
0
ファイル: Launcher.java プロジェクト: Rafal-G/jenkins
 @Override
 public void kill(Map<String, String> modelEnvVars) throws InterruptedException {
     ProcessTree.get().killAll(modelEnvVars);
 }