1
0
mirror of https://github.com/danog/parallel.git synced 2024-12-04 18:47:50 +01:00
parallel/lib/Context.php
2016-11-14 17:43:44 -06:00

28 lines
494 B
PHP

<?php declare(strict_types = 1);
namespace Amp\Parallel;
use Interop\Async\Promise;
interface Context {
/**
* @return bool
*/
public function isRunning(): bool;
/**
* Starts the execution context.
*/
public function start();
/**
* Immediately kills the context.
*/
public function kill();
/**
* @return \Interop\Async\Promise<mixed> Resolves with the returned from the context.
*/
public function join(): Promise;
}