123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <?php
- namespace Symfony\Component\Process\Pipes;
- interface PipesInterface
- {
- const CHUNK_SIZE = 16384;
-
- public function getDescriptors();
-
- public function getFiles();
-
- public function readAndWrite($blocking, $close = false);
-
- public function areOpen();
-
- public function close();
- }
|