2018-01-13 17:36:01 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace Amp\Internal;
|
|
|
|
|
|
|
|
use Amp\Iterator;
|
|
|
|
use Amp\Promise;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Wraps an Iterator instance that has public methods to emit, complete, and fail into an object that only allows
|
|
|
|
* access to the public API methods.
|
|
|
|
*/
|
2018-06-18 20:00:01 +02:00
|
|
|
class PrivateIterator implements Iterator
|
|
|
|
{
|
2018-01-13 17:36:01 +01:00
|
|
|
/** @var \Amp\Iterator */
|
|
|
|
private $iterator;
|
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function __construct(Iterator $iterator)
|
|
|
|
{
|
2018-01-13 17:36:01 +01:00
|
|
|
$this->iterator = $iterator;
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function advance(): Promise
|
|
|
|
{
|
2018-01-13 17:36:01 +01:00
|
|
|
return $this->iterator->advance();
|
|
|
|
}
|
|
|
|
|
2018-06-18 20:00:01 +02:00
|
|
|
public function getCurrent()
|
|
|
|
{
|
2018-01-13 17:36:01 +01:00
|
|
|
return $this->iterator->getCurrent();
|
|
|
|
}
|
|
|
|
}
|