mirror of
https://github.com/rekryt/iplist.git
synced 2025-10-12 08:34:15 +03:00
12 lines
241 B
PHP
12 lines
241 B
PHP
<?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;
|
|
}
|