ActionScheduler_HybridStore::init
Initialize the table data store tables.
Method of the class: ActionScheduler_HybridStore{}
No Hooks.
Returns
null. Nothing (null).
Usage
$ActionScheduler_HybridStore = new ActionScheduler_HybridStore(); $ActionScheduler_HybridStore->init();
ActionScheduler_HybridStore::init() ActionScheduler HybridStore::init code WC 10.4.3
public function init() {
add_action( 'action_scheduler/created_table', array( $this, 'set_autoincrement' ), 10, 2 );
$this->primary_store->init();
$this->secondary_store->init();
remove_action( 'action_scheduler/created_table', array( $this, 'set_autoincrement' ), 10 );
}