Technically when it comes to waiting, 0 MS would be enough. All add-ons load in a blocking manner, and schedule will always round up to the next frame. So this is enough:
schedule(0, 0, ...);
You may want to consider explicitly loading the add-on from your add-on with forceRequiredAddOn instead, however.