|
|
@@ -188,19 +188,19 @@ type UploadJobInfo struct { |
|
|
type BroadcastWaitInfo struct { |
|
|
type BroadcastWaitInfo struct { |
|
|
serder.Metadata `union:"BroadcastWait"` |
|
|
serder.Metadata `union:"BroadcastWait"` |
|
|
JobInfoBase |
|
|
JobInfoBase |
|
|
Type string `json:"type"` |
|
|
|
|
|
HandleType string `json:"handleType"` |
|
|
|
|
|
Broadcast Broadcast `json:"broadcast"` |
|
|
|
|
|
Wait Wait `json:"wait"` |
|
|
|
|
|
|
|
|
Type string `json:"type"` |
|
|
|
|
|
HandleType string `json:"handleType"` |
|
|
|
|
|
Broadcast []Broadcast `json:"broadcast"` |
|
|
|
|
|
Wait []Wait `json:"wait"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type Broadcast struct { |
|
|
type Broadcast struct { |
|
|
NextJobSetID JobSetID `json:"nextJobSetID"` |
|
|
NextJobSetID JobSetID `json:"nextJobSetID"` |
|
|
NextLocalJobID JobID `json:"nextLocalJobID"` |
|
|
|
|
|
|
|
|
NextLocalJobID string `json:"nextLocalJobID"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type Wait struct { |
|
|
type Wait struct { |
|
|
WaitJobIDs []JobID `json:"waitJobIDs"` |
|
|
|
|
|
|
|
|
WaitJobID string `json:"waitJobID"` |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
type NotifyJobInfo struct { |
|
|
type NotifyJobInfo struct { |
|
|
|