Automattic\WooCommerce\StoreApi\Utilities

RateLimits::is_exceeded_retry_afterpublic staticWC 1.0

If exceeded, seconds until reset.

Method of the class: RateLimits{}

No Hooks.

Returns

true|false|Int.

Usage

$result = RateLimits::is_exceeded_retry_after( $action_id );
$action_id(string) (required)
Identifier of the action.

RateLimits::is_exceeded_retry_after() code WC 9.9.4

public static function is_exceeded_retry_after( string $action_id ) {
	$current_limit = self::get_rate_limit( $action_id );
	$time          = time();
	// Before the next run is allowed, retry forbidden.
	if ( $time <= (int) $current_limit->reset && 0 === (int) $current_limit->remaining ) {
		return (int) $current_limit->reset - $time;
	}

	// After the next run is allowed, retry allowed.
	return false;
}