Checks if the strategy passed is a valid delayed (non-blocking) strategy.
Parameters
$strategystringrequired- The strategy to check.
Source
private function is_delayed_strategy( $strategy ) {
return in_array(
$strategy,
$this->delayed_strategies,
true
);
}
Changelog
| Version | Description |
|---|---|
| 6.3.0 | Introduced. |
User Contributed Notes
You must log in before being able to contribute a note or feedback.