1
0
mirror of https://github.com/danog/amp.git synced 2024-11-27 12:35:02 +01:00
amp/lib/Disposable.php
2016-05-27 15:44:01 -05:00

12 lines
239 B
PHP

<?php
namespace Amp;
use Interop\Async\Awaitable;
interface Disposable extends Awaitable {
/**
* Disposes of the observable subscriber, failing with an instance of \Amp\DisposedException
*/
public function dispose();
}