Added CaptureMemorySnapshot insight worker task to USES_TARGET_CONTROLLER group, to prevent simultaneous runs with other tasks.

This commit is contained in:
Nav
2022-12-28 15:54:53 +00:00
parent b8ca1fbc41
commit f5de0cdb61

View File

@@ -24,6 +24,12 @@ namespace Bloom
const std::optional<Targets::TargetMemoryBuffer>& data
);
TaskGroups getTaskGroups() const override {
return TaskGroups({
TaskGroup::USES_TARGET_CONTROLLER,
});
};
signals:
void memorySnapshotCaptured(MemorySnapshot snapshot);