proxygen
|
Public Member Functions | |
bool | operator< (const Pipe &other) const |
bool | operator== (const Pipe &other) const |
Public Attributes | |
folly::File | pipe |
int | childFd = -1 |
int | direction = PIPE_IN |
bool | enabled = true |
Represents a pipe between this process, and the child process (or its descendant). To interact with these pipes, you can use communicate(), or use parentFd() and related methods, or separate them from the Subprocess instance entirely via takeOwnershipOfPipes().
Definition at line 950 of file Subprocess.h.
|
inline |
|
inline |
int folly::Subprocess::Pipe::childFd = -1 |
Definition at line 952 of file Subprocess.h.
Referenced by operator<(), operator==(), and folly::Subprocess::spawnInternal().
int folly::Subprocess::Pipe::direction = PIPE_IN |
Definition at line 953 of file Subprocess.h.
Referenced by folly::Subprocess::spawnInternal().
bool folly::Subprocess::Pipe::enabled = true |
Definition at line 954 of file Subprocess.h.
folly::File folly::Subprocess::Pipe::pipe |
Definition at line 951 of file Subprocess.h.
Referenced by folly::Subprocess::spawnInternal().