1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 04:24:42 +01:00
amp/lib/Subscriber.php
2016-07-19 12:40:16 -05:00

36 lines
695 B
PHP

<?php
namespace Amp;
/**
* Subscriber implementation returned from implementors of \Amp\Observable.
*/
class Subscriber {
/**
* @var string
*/
private $id;
/**
* @var callable
*/
private $unsubscribe;
/**
* @param string $id
* @param callable $unsubscribe
*/
public function __construct($id, callable $unsubscribe) {
$this->id = $id;
$this->unsubscribe = $unsubscribe;
}
/**
* Unsubscribes from the Observable. No future values emitted by the Observable will be received.
*/
public function unsubscribe() {
$unsubscribe = $this->unsubscribe;
$unsubscribe($this->id);
}
}