mirror of
https://github.com/danog/amp.git
synced 2024-12-03 18:07:57 +01:00
a2a78939b9
Reduces the likelihood of using next()/current() concurrently.
60 lines
1.2 KiB
PHP
60 lines
1.2 KiB
PHP
<?php
|
|
|
|
namespace Amp\Internal;
|
|
|
|
use Amp\Pipeline;
|
|
|
|
/**
|
|
* Wraps an EmitSource instance that has public methods to emit, complete, and fail into an object that only allows
|
|
* access to the public API methods and automatically calls EmitSource::destroy() when the object is destroyed.
|
|
*
|
|
* @internal
|
|
*
|
|
* @template-covariant TValue
|
|
* @template-implements Pipeline<TValue>
|
|
* @template-implements \IteratorAggregate<int, TValue>
|
|
*/
|
|
final class AutoDisposingPipeline implements Pipeline, \IteratorAggregate
|
|
{
|
|
/** @var EmitSource<TValue, null> */
|
|
private EmitSource $source;
|
|
|
|
public function __construct(EmitSource $source)
|
|
{
|
|
$this->source = $source;
|
|
}
|
|
|
|
public function __destruct()
|
|
{
|
|
$this->source->destroy();
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function continue(): mixed
|
|
{
|
|
return $this->source->continue();
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*/
|
|
public function dispose(): void
|
|
{
|
|
$this->source->dispose();
|
|
}
|
|
|
|
/**
|
|
* @inheritDoc
|
|
*
|
|
* @psalm-return \Traversable<int, TValue>
|
|
*/
|
|
public function getIterator(): \Traversable
|
|
{
|
|
while (null !== $value = $this->source->continue()) {
|
|
yield $value;
|
|
}
|
|
}
|
|
}
|