1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-03 10:07:49 +01:00
parallel/lib/Worker/Worker.php
2016-08-23 16:47:40 -05:00

49 lines
1.0 KiB
PHP

<?php declare(strict_types = 1);
namespace Amp\Parallel\Worker;
use Interop\Async\Awaitable;
/**
* An interface for a parallel worker thread that runs a queue of tasks.
*/
interface Worker {
/**
* Checks if the worker is running.
*
* @return bool True if the worker is running, otherwise false.
*/
public function isRunning(): bool;
/**
* Checks if the worker is currently idle.
*
* @return bool
*/
public function isIdle(): bool;
/**
* Starts the context execution.
*/
public function start();
/**
* Enqueues a task to be executed by the worker.
*
* @param Task $task The task to enqueue.
*
* @return \Interop\Async\Awaitable<mixed> Resolves with the return value of Task::run().
*/
public function enqueue(Task $task): Awaitable;
/**
* @return \Interop\Async\Awaitable<int> Exit code.
*/
public function shutdown(): Awaitable;
/**
* Immediately kills the context.
*/
public function kill();
}