Initial commit

This commit is contained in:
Rekryt
2024-08-30 15:22:24 +03:00
commit 171e449744
46 changed files with 4638 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
<?php
namespace OpenCCK\Infrastructure\Task;
use Amp\Cancellation;
use Amp\Parallel\Worker\Task;
use Amp\Sync\Channel;
interface TaskInterface extends Task {
public function run(Channel $channel, Cancellation $cancellation): mixed;
}