How to get IProcessController?

I wish to get information about all existing processes (groups, ids, executors, etc.).

For this I tried to use IProcessController and IProcessManager, but I don’t know how. IoC like this:

IProcessController pc = IoC.Get<IProcessController>(null);

don’t find it and I didn’t find it as member of IApplication or its subelements.

You can get the global process controller like this:
IProcessController controller = IoC.Get<IApplication>().Simulation.ProcessController;

2 Likes

Many thanks)
That was closer, then I thought