1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00
amp/lib/Emitter.php

70 lines
1.5 KiB
PHP
Raw Permalink Normal View History

<?php
2016-08-16 06:46:26 +02:00
2016-05-24 18:47:14 +02:00
namespace Amp;
/**
* Emitter is a container for an iterator that can emit values using the emit() method and completed using the
* complete() and fail() methods of this object. The contained iterator may be accessed using the iterate()
* method. This object should not be part of a public API, but used internally to create and emit values to an
* iterator.
*/
2018-06-18 20:00:01 +02:00
final class Emitter
{
2017-12-20 17:30:43 +01:00
/** @var object Has public emit, complete, and fail methods. */
private $emitter;
/** @var \Amp\Iterator Hides producer methods. */
private $iterator;
2018-06-18 20:00:01 +02:00
public function __construct()
{
$this->emitter = new class implements Iterator {
use Internal\Producer {
emit as public;
complete as public;
fail as public;
2017-01-04 02:10:27 +01:00
}
};
2017-12-20 17:30:43 +01:00
$this->iterator = new Internal\PrivateIterator($this->emitter);
}
2017-01-04 02:10:27 +01:00
/**
* @return \Amp\Promise
*/
2018-06-18 20:00:01 +02:00
public function iterate(): Iterator
{
return $this->iterator;
}
2017-01-04 02:10:27 +01:00
/**
* Emits a value to the iterator.
*
* @param mixed $value
*
* @return \Amp\Promise
*/
2018-06-18 20:00:01 +02:00
public function emit($value): Promise
{
2017-12-20 17:30:43 +01:00
return $this->emitter->emit($value);
}
2017-01-04 02:10:27 +01:00
/**
* Completes the iterator.
*/
2018-06-18 20:00:01 +02:00
public function complete()
{
2017-12-20 17:30:43 +01:00
$this->emitter->complete();
}
/**
* Fails the iterator with the given reason.
*
* @param \Throwable $reason
*/
2018-06-18 20:00:01 +02:00
public function fail(\Throwable $reason)
{
2017-12-20 17:30:43 +01:00
$this->emitter->fail($reason);
2016-05-24 18:47:14 +02:00
}
}