1 | <?php |
||
10 | class WritableFifo extends AbstractFifo |
||
11 | { |
||
12 | public function __construct($pathname, $blocking = true, $mode = 'w+', $permission = 0666) |
||
16 | |||
17 | /** |
||
18 | * {@inheritdoc} |
||
19 | */ |
||
20 | public function read() |
||
24 | |||
25 | /** |
||
26 | * {@inheritdoc} |
||
27 | */ |
||
28 | public function write($message) |
||
33 | |||
34 | /** |
||
35 | * {@inheritdoc} |
||
36 | */ |
||
37 | public function getStream() |
||
45 | |||
46 | public function setBlocking($blocking) |
||
53 | } |
||
54 |