Separate cron into periodic components and use that as the main interface for scheduled tasks instead of the quaint 'poller'.

This commit is contained in:
redmatrix
2016-05-19 21:22:04 -07:00
parent 853322e7d2
commit 39bc0664a7
5 changed files with 322 additions and 232 deletions

View File

@@ -5,8 +5,7 @@ require_once('include/cli_startup.php');
function poller_run($argc,$argv){
cli_startup();
\Zotlabs\Daemon\Master::Summon('Poller');
\Zotlabs\Daemon\Master::Summon('Cron');
}