class Poco::ProcessHandle
Overview
A handle for a process created with Process::launch(). Moreā¦
#include <Process.h> class ProcessHandle { public: // typedefs typedef ProcessImpl::PIDImpl PID; // construction ProcessHandle(const ProcessHandle& handle); // methods ProcessHandle& operator=(const ProcessHandle& handle); PID id() const; int wait() const; protected: // construction ProcessHandle(ProcessHandleImpl* pImpl); };
Detailed Documentation
A handle for a process created with Process::launch().
This handle can be used to determine the process ID of the newly created process and it can be used to wait for the completion of a process.
Construction
ProcessHandle(const ProcessHandle& handle)
Creates a ProcessHandle by copying another one.