2020-08-23 16:18:28 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Amp;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* A pipeline is an asynchronous set of ordered values.
|
|
|
|
*
|
|
|
|
* @template-covariant TValue
|
|
|
|
*/
|
|
|
|
interface Pipeline
|
|
|
|
{
|
|
|
|
/**
|
|
|
|
* Succeeds with the emitted value if the pipeline has emitted a value or null if the pipeline has completed.
|
|
|
|
* If the pipeline fails, the returned promise will fail with the same exception.
|
|
|
|
*
|
|
|
|
* @return Promise<mixed|null> Resolves with null if the pipeline has completed.
|
|
|
|
*
|
|
|
|
* @psalm-return Promise<TValue|null>
|
|
|
|
*
|
|
|
|
* @throws \Throwable The exception used to fail the pipeline.
|
|
|
|
*/
|
|
|
|
public function continue(): Promise;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Disposes of the pipeline, indicating the consumer is no longer interested in the pipeline output.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2020-09-24 18:52:22 +02:00
|
|
|
public function dispose(): void;
|
2020-08-23 16:18:28 +02:00
|
|
|
}
|