Improvement: do not display an error when the server asked to kill a render

This commit is contained in:
Laurent Clouet
2014-12-03 20:09:50 +00:00
parent 8abcde516f
commit 76c8be9e70
4 changed files with 25 additions and 0 deletions

View File

@@ -41,6 +41,7 @@ public class Job {
private String updateRenderingStatusMethod;
private Process process;
private boolean askForRendererKill;
private Configuration config;
@@ -63,6 +64,7 @@ public class Job {
maxOutputNbLines = 0;
updateRenderingStatusMethod = null;
process = null;
askForRendererKill = false;
}
@@ -110,6 +112,14 @@ public class Job {
return maxOutputNbLines;
}
public void setAskForRendererKill(boolean val) {
askForRendererKill = val;
}
public boolean getAskForRendererKill() {
return askForRendererKill;
}
public void setProcess(Process val) {
process = val;
}