<?php
use EasySwoole\Crontab\Crontab;
use EasySwoole\Crontab\Tests\Jobs\JobPerMin;
require_once 'vendor/autoload.php';
$http = new Swoole\Http\Server('0.0.0.0', 9501);
$crontab = new Crontab();
$crontab->register(new JobPerMin());
$crontab->attachToServer($http);
$http->on('request', function ($request, $response) use ($crontab) {
$ret = $crontab->rightNow('JobPerMin');
$response->header('Content-Type', 'text/plain');
$response->end('Hello World ' . $ret);
});
$http->start();
forked from easy-swoole/crontab
-
Notifications
You must be signed in to change notification settings - Fork 0
License
BrightLocal/crontab
Folders and files
Name | Name | Last commit message | Last commit date | |
---|---|---|---|---|
Repository files navigation
About
No description, website, or topics provided.
Resources
License
Stars
Watchers
Forks
Releases
No releases published
Packages 0
No packages published
Languages
- PHP 100.0%