Skip to content
zetaepyon edited this page Jan 9, 2018 · 1 revision

This page outlines functions related to named pipes. This functionality is under development, so there may be changes.

windower.pipe.connect_reader()

This function connects to the named pipe \\.\pipe\luaReader.

windower.pipe.connect_writer()

This function connects to the named pipe \\.\pipe\luaWriter.

windower.pipe.disconnect_reader()

This function disconnects from the named pipe \\.\pipe\luaReader.

windower.pipe.disconnect_writer()

This function disconnects from the named pipe \\.\pipe\luaWriter.

windower.pipe.is_reader_connected()

This function returns whether the named pipe for reading is connected.

windower.pipe.is_writer_connected()

This function returns whether the named pipe for writing is connected.

windower.pipe.send(message)

  • message string Message to write.

This function sends a message over the named pipe \\.\pipe\luaWriter.