1
0
mirror of https://github.com/danog/parallel.git synced 2024-11-26 20:34:40 +01:00
parallel/lib/Context.php
2016-08-23 16:47:40 -05:00

28 lines
500 B
PHP

<?php declare(strict_types = 1);
namespace Amp\Parallel;
use Interop\Async\Awaitable;
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\Awaitable<mixed> Resolves with the returned from the context.
*/
public function join(): Awaitable;
}