// register the new process and make the process function factory lookup again the processes
Processors.addProcessFactory(this);
for(FunctionFactory ff : CommonFactoryFinder.getFunctionFactories(null)) {
if(ff instanceof ProcessFunctionFactory) {
ProcessFunctionFactory pff = (ProcessFunctionFactory) ff;
pff.clear();
}
}
}