omni::core::OnModuleStartedFn

Defined in omni/core/ModuleExports.h

using omni::core::OnModuleStartedFn = void()

This function will be called after the module is fully registered. It is called after omni::core::OnModuleLoadFn successfully returns.

This function will not be called again until after OnModuleUnloadFn has completed and the module has been fully unloaded and reloaded.

The owning omni::core::ITypeFactory can be safely accessed in this function.

A interface implementation’s createFn can be called concurrently with this function.

An interface implementation’s createFn can be called before this function is called, as such: