Action_Scheduler\Migration

Scheduler::get_schedule_interval()privateWC 1.0

Get migration batch schedule interval.

Method of the class: Scheduler{}

Hooks from the method

Return

Int. Seconds between migration runs.

Usage

// private - for code of main (parent) class only
$result = $this->get_schedule_interval();

Scheduler::get_schedule_interval() code WC 8.7.0

private function get_schedule_interval() {
	return (int) apply_filters( 'action_scheduler/migration_interval', 0 );
}