1
0
mirror of https://github.com/danog/amp.git synced 2025-01-22 21:31:18 +01:00
amp/lib/Disposable.php

12 lines
228 B
PHP
Raw Normal View History

2016-05-27 15:44:01 -05:00
<?php
namespace Amp;
use Interop\Async\Awaitable;
interface Disposable extends Awaitable {
/**
2016-05-29 11:35:09 -05:00
* Disposes of the subscriber, failing with an instance of \Amp\DisposedException
2016-05-27 15:44:01 -05:00
*/
public function dispose();
}