Documentation ¶
Overview ¶
Package fifo implements functions to create and open a fifo for inter-process communication in an OS agnostic way. A few assumptions should be made when using this package. First, New() must always be called before Open(). Second Open() returns an io.ReadWriteCloser that is only connected with the io.ReadWriteCloser returned from New().
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func IsClosedErr ¶
func New ¶
func New(path string) (io.ReadWriteCloser, error)
New creates a fifo at the given path and returns an io.ReadWriteCloser for it The fifo must not already exist
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.