package named-pipe

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t

A connection to a named pipe server

val openpipe : string -> t Lwt.t

Connect to the named pipe server on the given path (e.g. \\.\pipe\foo). If the server isn't running then this raises Unix_error(Unix.ENOENT...). If the server is busy then this function blocks.

val to_fd : t -> Lwt_unix.file_descr