ActionScheduler_HybridStore::release_claim()publicWC 1.0

Release a claim in the table data store.

Method of the class: ActionScheduler_HybridStore{}

No Hooks.

Return

null. Nothing (null).

Usage

$ActionScheduler_HybridStore = new ActionScheduler_HybridStore();
$ActionScheduler_HybridStore->release_claim( $claim );
$claim(ActionScheduler_ActionClaim) (required)
Claim object.

ActionScheduler_HybridStore::release_claim() code WC 8.7.0

public function release_claim( ActionScheduler_ActionClaim $claim ) {
	$this->primary_store->release_claim( $claim );
}