PIPE_WAIT top-level constant

  1. @Deprecated('Use NAMED_PIPE_MODE.PIPE_WAIT instead')
int const PIPE_WAIT

Blocking mode is enabled. When the pipe handle is specified in the ReadFile, WriteFile, or ConnectNamedPipe function, the operations are not completed until there is data to read, all data is written, or a client is connected. Use of this mode can mean waiting indefinitely in some situations for a client process to perform an action.

Implementation

@Deprecated('Use NAMED_PIPE_MODE.PIPE_WAIT instead')
const PIPE_WAIT = 0x00000000;