/**
* All the active processors
* Actually it is not being used, it is here to be used when required in future requirements
*/module.exports = newclass {
#instances = newSet();
register(dp) {
this.#instances.add(dp);
}
delete(dp) {
this.#instances.delete(dp);
}
}