mirror of
https://github.com/Yetangitu/ampache
synced 2025-10-04 10:19:25 +02:00
19 lines
377 B
PHP
19 lines
377 B
PHP
<?php
|
|
|
|
namespace React\Stream;
|
|
|
|
use Evenement\EventEmitterInterface;
|
|
|
|
/**
|
|
* @event data
|
|
* @event end
|
|
* @event error
|
|
* @event close
|
|
*/
|
|
interface ReadableStreamInterface extends StreamInterface
|
|
{
|
|
public function isReadable();
|
|
public function pause();
|
|
public function resume();
|
|
public function pipe(WritableStreamInterface $dest, array $options = array());
|
|
}
|