1
0
mirror of https://github.com/danog/amp.git synced 2024-12-04 18:38:17 +01:00
amp/lib/StreamSource.php

79 lines
2.0 KiB
PHP
Raw Normal View History

2020-05-13 17:15:21 +02:00
<?php
namespace Amp;
/**
* StreamSource is a container for a Stream that can yield values using the yield() method and completed using the
* complete() and fail() methods. The contained Stream may be accessed using the stream() method. This object should
* not be returned as part of a public API, but used internally to create and yield values to a Stream.
*
* @template TValue
*/
final class StreamSource
{
/** @var Stream<TValue> Has public yield, complete, and fail methods. */
private $stream;
public function __construct()
{
$this->stream = new class implements Stream {
use Internal\Yielder {
stream as public;
}
};
}
/**
* Returns a Stream that can be given to an API consumer. This method may be called only once!
*
* @return Stream
*
* @psalm-return Stream<TValue>
*/
public function stream(): Stream
{
/** @psalm-suppress UndefinedInterfaceMethod */
return $this->stream->stream();
}
/**
* Yields a value to the stream.
*
* @param mixed $value
*
* @psalm-param TValue $value
*
* @return Promise<null> Resolves with null when the yielded value has been consumed or fails with
* {@see DisposedException} if the stream has been destroyed.
*/
public function yield($value): Promise
{
/** @psalm-suppress UndefinedInterfaceMethod */
return $this->stream->yield($value);
}
/**
* Completes the stream.
*
* @return void
*/
public function complete()
{
/** @psalm-suppress UndefinedInterfaceMethod */
$this->stream->complete();
}
/**
* Fails the stream with the given reason.
*
* @param \Throwable $reason
*
* @return void
*/
public function fail(\Throwable $reason)
{
/** @psalm-suppress UndefinedInterfaceMethod */
$this->stream->fail($reason);
}
}