1
0
mirror of https://github.com/danog/amp.git synced 2024-12-12 09:29:45 +01:00
amp/lib/Producer.php

35 lines
881 B
PHP
Raw Normal View History

2017-01-04 02:10:27 +01:00
<?php
namespace Amp;
2017-04-27 17:51:06 +02:00
final class Producer implements Iterator {
2017-01-04 02:10:27 +01:00
use CallableMaker, Internal\Producer;
/**
* @param callable(callable(mixed $value): Promise $emit): \Generator $producer
2017-01-04 02:10:27 +01:00
*
* @throws \Error Thrown if the callable does not return a Generator.
*/
public function __construct(callable $producer) {
$result = $producer($this->callableFromInstanceMethod("emit"));
if (!$result instanceof \Generator) {
throw new \Error("The callable did not return a Generator");
}
$coroutine = new Coroutine($result);
$coroutine->onResolve(function ($exception) {
if ($this->complete) {
return;
}
if ($exception) {
$this->fail($exception);
return;
}
$this->complete();
2017-01-04 02:10:27 +01:00
});
}
}