1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 13:21:16 +01:00
amp/lib/Disposable.php
2016-05-29 11:46:58 -05:00

12 lines
228 B
PHP

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