Feat: use chunk for renderer
This commit is contained in:
@@ -65,6 +65,7 @@ import java.util.regex.Pattern;
|
||||
private String frameNumber;
|
||||
private List<Chunk> archiveChunks;
|
||||
private String rendererMD5;
|
||||
private List<Chunk> rendererChunks;
|
||||
private String id;
|
||||
private String outputImagePath;
|
||||
|
||||
@@ -92,7 +93,7 @@ import java.util.regex.Pattern;
|
||||
private Log log;
|
||||
|
||||
public Job(Configuration config_, Gui gui_, Log log_, String id_, String frame_, String path_, boolean use_gpu, String command_, String validationUrl_,
|
||||
String script_, List<Chunk> archiveChunks_, String rendererMd5_, String name_, char[] password_, boolean synchronous_upload_,
|
||||
String script_, List<Chunk> archiveChunks_, String rendererMd5_, List<Chunk> rendererChunks_, String name_, char[] password_, boolean synchronous_upload_,
|
||||
String update_method_) {
|
||||
configuration = config_;
|
||||
id = id_;
|
||||
@@ -103,6 +104,7 @@ import java.util.regex.Pattern;
|
||||
validationUrl = validationUrl_;
|
||||
archiveChunks = archiveChunks_;
|
||||
rendererMD5 = rendererMd5_;
|
||||
rendererChunks = rendererChunks_;
|
||||
name = name_;
|
||||
password = password_.clone();
|
||||
synchronousUpload = synchronous_upload_;
|
||||
|
||||
Reference in New Issue
Block a user