1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-02 17:52:14 +01:00
parallel/lib/Worker/Worker.php
2016-11-14 17:43:44 -06:00

49 lines
1.0 KiB
PHP

<?php declare(strict_types = 1);
namespace Amp\Parallel\Worker;
use Interop\Async\Promise;
/**
* 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\Promise<mixed> Resolves with the return value of Task::run().
*/
public function enqueue(Task $task): Promise;
/**
* @return \Interop\Async\Promise<int> Exit code.
*/
public function shutdown(): Promise;
/**
* Immediately kills the context.
*/
public function kill();
}