1 | <?php |
||
11 | abstract class AbstractFifo implements PipeInterface |
||
12 | { |
||
13 | protected $pathname; |
||
14 | |||
15 | protected $mode; |
||
16 | |||
17 | protected $permission; |
||
18 | |||
19 | protected $stream; |
||
20 | |||
21 | protected $blocking; |
||
22 | |||
23 | public function __construct($pathname, $blocking, $mode, $permission = 0666) |
||
36 | |||
37 | /** |
||
38 | * {@inheritdoc} |
||
39 | */ |
||
40 | public function getStream() |
||
47 | |||
48 | /** |
||
49 | * {@inheritdoc} |
||
50 | */ |
||
51 | public function close() |
||
55 | |||
56 | /** |
||
57 | * {@inheritdoc} |
||
58 | */ |
||
59 | public function setBlocking($blocking) |
||
63 | |||
64 | /** |
||
65 | * {@inheritdoc} |
||
66 | */ |
||
67 | public function isBlocking() |
||
71 | } |
||
72 |