Feat: split project zip in chunks
This commit is contained in:
@@ -4,15 +4,18 @@ import lombok.Getter;
|
||||
import lombok.ToString;
|
||||
import org.simpleframework.xml.Attribute;
|
||||
import org.simpleframework.xml.Element;
|
||||
import org.simpleframework.xml.ElementList;
|
||||
import org.simpleframework.xml.Root;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
@Root(strict = false, name = "job") @Getter @ToString public class RenderTask {
|
||||
|
||||
@Attribute(name = "id") private String id;
|
||||
|
||||
@Attribute(name = "use_gpu") private int useGpu;
|
||||
|
||||
@Attribute(name = "archive_md5") private String archive_md5;
|
||||
@ElementList(name = "chunks") private List<Chunk> chunks;
|
||||
|
||||
@Attribute(name = "path") private String path;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user