1
0
mirror of https://github.com/danog/amp.git synced 2024-11-30 04:29:08 +01:00

Add drain() method to Observer

This commit is contained in:
Aaron Piotrowski 2016-08-23 08:50:04 -05:00
parent ddefcf21f9
commit 5f1354bf1a

View File

@ -167,4 +167,29 @@ class Observer {
return $this->result;
}
/**
* Returns an array of values that were not consumed by the Observer before the Observable completed.
*
* @return array Unconsumed emitted values.
*
* @throws \Error If the observable has not completed.
*/
protected function drain(): array {
if (!$this->resolved) {
throw new \Error("The observable has not resolved");
}
$values = $this->values;
$this->values = [];
$this->position = -1;
$deferreds = $this->deferreds;
$this->deferreds = [];
foreach ($deferreds as $deferred) {
$deferred->resolve();
}
return $values;
}
}