enum Poco::Pipe::CloseMode

Overview

< used by close() Moreā€¦

#include <Pipe.h>

enum CloseMode
{
    CLOSE_READ  = 0x01,
    CLOSE_WRITE = 0x02,
    CLOSE_BOTH  = 0x03,
};

Detailed Documentation

< used by close()

Enum Values

CLOSE_READ

Close reading end of pipe.

CLOSE_WRITE

Close writing end of pipe.

CLOSE_BOTH

Close both ends of pipe.