1234567891011121314151617181920212223 |
- <?php
- namespace app\queue\redis;
- use Webman\RedisQueue\Consumer;
- use App\services\TrackService;
- use support\facade\Logger;
- class TiktokTrack implements Consumer
- {
-
- public $queue = 'tiktok_track';
-
- public $connection = 'default';
-
- public function consume($data)
- {
-
- TrackService::cronDeal();
- }
- }
|