action_scheduler/migration_interval

action_scheduler/migration_interval

Hook Type: filter

See hook in core

Displaying hooks found in version: all-in-one-seo-pack.4.5.7.1

apply_filters('action_scheduler/migration_interval') is found 1 times:

  • /vendor/woocommerce/action-scheduler/classes/migration/Scheduler.php line 105
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    *
     * @return int Seconds between migration runs. Defaults to 0 seconds to allow chaining migration via Async Runners.
     */
    private function get_schedule_interval() {
        return (int) apply_filters( 'action_scheduler/migration_interval', 0 );
    }
     
    /**
     * Get migration batch size.
     *
     * @return int Number of actions to migrate in each batch. Defaults to 250.