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

15 lines
316 B
PHP
Raw Normal View History

2016-05-27 15:44:01 -05:00
<?php
namespace Amp;
use Interop\Async\Awaitable;
2016-06-01 11:37:12 -05:00
/**
* Objects returned from \Amp\Observable::subscribe() implement this interface.
*/
2016-05-27 15:44:01 -05:00
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();
}