mirror of
https://github.com/danog/amp.git
synced 2024-11-27 12:35:02 +01:00
12 lines
239 B
PHP
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();
|
|
} |