How to periodically call a function in third party plugin?

HI all, I have written a third party plugin that is based on IModuleInterface. My question is like in the topic: how to periodically call a function without Tick() method?

Take a look at this guide for how to do timers in C++. For blueprints Set Timer by Event works good. Good job on not wanting to use the Tick() event as it is almost always bad form!