1
0
mirror of https://github.com/danog/postgres.git synced 2024-11-27 04:24:45 +01:00
postgres/lib/Listener.php
Aaron Piotrowski a18d7386bf
Remove __destruct() from Internal\Operation
Users now define their own destruct methods invoking complete().
2017-07-29 10:25:06 -05:00

80 lines
2.0 KiB
PHP

<?php
namespace Amp\Postgres;
use Amp\CallableMaker;
use Amp\Iterator;
use Amp\Promise;
class Listener implements Iterator, Operation {
use CallableMaker, Internal\Operation;
/** @var \Amp\Iterator */
private $iterator;
/** @var string */
private $channel;
/** @var callable */
private $unlisten;
/**
* @param \Amp\Iterator $iterator Iterator emitting notificatons on the channel.
* @param string $channel Channel name.
* @param callable(string $channel): \Amp\Promise $unlisten Function invoked to unlisten from the channel.
*/
public function __construct(Iterator $iterator, string $channel, callable $unlisten) {
$this->iterator = $iterator;
$this->channel = $channel;
$this->unlisten = $unlisten;
}
public function __destruct() {
if ($this->unlisten) {
$this->unlisten(); // Invokes $this->complete().
}
}
/**
* {@inheritdoc}
*/
public function advance(): Promise {
return $this->iterator->advance();
}
/**
* {@inheritdoc}
*
* @return \Amp\Postgres\Notification
*/
public function getCurrent(): Notification {
return $this->iterator->getCurrent();
}
/**
* @return string Channel name.
*/
public function getChannel(): string {
return $this->channel;
}
/**
* Unlistens from the channel. No more values will be emitted from this listener.
*
* @return \Amp\Promise<\Amp\Postgres\CommandResult>
*
* @throws \Error If this method was previously invoked.
*/
public function unlisten(): Promise {
if (!$this->unlisten) {
throw new \Error("Already unlistened on this channel");
}
/** @var \Amp\Promise $promise */
$promise = ($this->unlisten)($this->channel);
$this->unlisten = null;
$promise->onResolve($this->callableFromInstanceMethod("complete"));
return $promise;
}
}