Add ability to look up a process by its uuid

This commit is contained in:
Sam Atkins
2024-05-10 13:46:25 +01:00
parent 09cee986f2
commit e304f6fc3a
+4
View File
@@ -19,6 +19,10 @@ export class ProcessService extends Service {
return this.processes_map.get(NULL_UUID);
}
get_by_uuid (uuid) {
return this.processes_map.get(uuid);
}
get_children_of (uuid) {
if ( ! uuid ) {
uuid = NULL_UUID;