Share via


PipeServer.new Method

Creates a new instance of the PipeServer class.

Syntax

public void new(str pipename, [boolean blocking])

Run On

Called

Parameters

  • pipename
    Type: str
    The name of the named pipe to create.
  • blocking
    Type: boolean
    A boolean flag that determines whether blocking behavior is desired.
    Non-blocking mode is supported for compatibility with Microsoft LAN Manager version 2.0 and should not be used to achieve asynchronous I/O with named pipes; instead, a polling technique should be used (see read method).

Remarks

Some restrictions apply, which are stated in the example in the general description of the PipeServer class.

See Also

PipeServer Class

PipeServer.read Method