Class yii\queue\closure\Job
Inheritance | yii\queue\closure\Job |
---|---|
Implements | yii\queue\JobInterface |
Source Code | https://github.com/yiisoft/yii2-queue/blob/master/closure/Job.php |
Closure Job.
Public Properties
Property | Type | Description | Defined By |
---|---|---|---|
$serialized | string | Serialized closure | yii\queue\closure\Job |
Public Methods
Method | Description | Defined By |
---|---|---|
execute() | Unserializes and executes a closure. | yii\queue\closure\Job |
Property Details
Method Details
Unserializes and executes a closure.
public void|mixed execute ( $queue ) | ||
$queue | yii\queue\Queue | Which pushed and is handling the job |
return | void|mixed | Result of the job execution |
---|