| 1 | <?php |
||
| 10 | class ReadableFifo extends AbstractFifo |
||
| 11 | { |
||
| 12 | public function __construct($pathname, $blocking = true, $mode = 'r+', $permission = 0666) |
||
| 16 | |||
| 17 | /** |
||
| 18 | * {@inheritdoc} |
||
| 19 | */ |
||
| 20 | public function read() |
||
| 33 | |||
| 34 | /** |
||
| 35 | * {@inheritdoc} |
||
| 36 | */ |
||
| 37 | public function write($message) |
||
| 41 | |||
| 42 | /** |
||
| 43 | * {@inheritdoc} |
||
| 44 | */ |
||
| 45 | public function getStream() |
||
| 51 | } |
||
| 52 |