mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-22 21:22:40 +00:00
6d4aa4db6e
- Basic update service handles only one feed at a time and possibly leaks memory - Output for REST requests is still very basic - No avatar support - No reporting of whether cron works - No cleanup before or after feed updates
11 lines
No EOL
267 B
PHP
11 lines
No EOL
267 B
PHP
<?php
|
|
declare(strict_types=1);
|
|
namespace JKingWeb\Arsse\Service;
|
|
|
|
interface Driver {
|
|
static function driverName(): string;
|
|
static function requirementsMet(): bool;
|
|
function queue(int ...$feeds): int;
|
|
function exec(): int;
|
|
function clean(): bool;
|
|
} |