Tribe__Process__Queue::sync_handle( array|null $data_source = null )
Concrete implementation of the base handler method.
Contents
Just a proxy to the sync_process method.
Parameters
- $data_source
-
(array|null) (Optional) If not provided the method will read the handler data from the request array.
Default value: null
Return
(array|mixed|null) The synchronous process result.
Source
File: src/Tribe/Process/Queue.php
public function sync_handle( array $data_source = null ) {
// In the base implementation the data source is unused and read from the database.
return $this->sync_process();
}
Changelog
| Version | Description |
|---|---|
| 4.9.5 | Introduced. |