Disable World Tick?

I was able to do this using delegates. As of now, I can tick my actors by creating a custom MyTick(float DeltaTime) function in my actors and bind that to a delegate which broadcasts during Tick() of my manager. But, this does not allow me to tick my actors’ components. I’d have to define these custom MyTick() in all the components to be able to bind them and to do this I’ll have to create separate classes for all the components I choose to use. This seems a bit overkill. Am I thinking this right or is there another way to do this?