action_scheduler/migration_batch_complete action-hookWC 1.0

Usage

add_action( 'action_scheduler/migration_batch_complete', 'wp_kama_action_scheduler_migration_batch_complete_action' );

/**
 * Function for `action_scheduler/migration_batch_complete` action-hook.
 * 
 * @param  $action_ids 
 *
 * @return void
 */
function wp_kama_action_scheduler_migration_batch_complete_action( $action_ids ){

	// action...
}
$action_ids
-

Where the hook is called

Runner::migrate_actions()
action_scheduler/migration_batch_complete
woocommerce/packages/action-scheduler/classes/migration/Runner.php 126
do_action( 'action_scheduler/migration_batch_complete', $action_ids );

Where the hook is used in WooCommerce

woocommerce/packages/action-scheduler/classes/WP_CLI/Migration_Command.php 144
add_action( 'action_scheduler/migration_batch_complete', function ( $batch ) {