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

31 lines
795 B
PHP
Raw Normal View History

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
*/
public function dispose();
}