<?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();
-
Notifications
You must be signed in to change notification settings - Fork 7
License
easy-swoole/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
Packages 0
No packages published