1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 21:31:18 +01:00
amp/lib/Emitter.php

39 lines
1.0 KiB
PHP
Raw Normal View History

2016-08-17 22:25:54 -05:00
<?php declare(strict_types = 1);
2016-08-15 23:46:26 -05:00
2016-05-24 11:47:14 -05:00
namespace Amp;
2016-08-29 18:29:21 -05:00
use Interop\Async\Loop;
2016-05-26 18:20:05 -05:00
final class Emitter implements Observable {
2016-08-29 18:29:21 -05:00
use CallableFromMethod, Internal\Producer;
/**
2016-08-16 02:28:47 -05:00
* @param callable(callable(mixed $value): Awaitable $emit): \Generator $emitter
*
* @throws \Error Thrown if the callable does not return a Generator.
*/
public function __construct(callable $emitter) {
2016-08-29 18:29:21 -05:00
$result = $emitter($this->callableFromInstanceMethod('emit'));
if (!$result instanceof \Generator) {
2016-08-11 14:35:58 -05:00
throw new \Error("The callable did not return a Generator");
}
Loop::defer(function () use ($result) {
$coroutine = new Coroutine($result);
$coroutine->when(function ($exception, $value) {
if ($this->resolved) {
return;
}
if ($exception) {
$this->fail($exception);
return;
}
$this->resolve($value);
});
});
2016-05-24 11:47:14 -05:00
}
}