action_scheduler_stored_action action-hookWC 1.0

Usage

add_action( 'action_scheduler_stored_action', 'wp_kama_action_scheduler_stored_action' );

/**
 * Function for `action_scheduler_stored_action` action-hook.
 * 
 * @param  $action_id 
 *
 * @return void
 */
function wp_kama_action_scheduler_stored_action( $action_id ){

	// action...
}
$action_id
-

Where the hook is called

ActionScheduler_DBStore::save_action_to_db()
action_scheduler_stored_action
ActionScheduler_wpPostStore::save_action()
action_scheduler_stored_action

Where the hook is used in WooCommerce

woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Logger.php 64
add_action( 'action_scheduler_stored_action', array( $this, 'log_stored_action' ) );
woocommerce/packages/action-scheduler/classes/abstracts/ActionScheduler_Logger.php 68
remove_action( 'action_scheduler_stored_action', array( $this, 'log_stored_action' ) );