mirror of
https://github.com/danog/amp.git
synced 2024-11-27 12:35:02 +01:00
16 lines
197 B
PHP
16 lines
197 B
PHP
<?php
|
|
|
|
namespace Amp;
|
|
|
|
interface Streamable {
|
|
/**
|
|
* @return \Generator
|
|
*/
|
|
public function stream();
|
|
|
|
/**
|
|
* @return \Generator
|
|
*/
|
|
public function buffer();
|
|
}
|