RAA - win32-pipe/0.1.0

win32-pipe / 0.1.0

Short description: Interface for named pipes on Win32
Category: Library/Win32
Status: beta
Created: 2003-11-22 07:11:33 GMT
Last update: 2004-06-07 17:55:01 GMT
Owner: Daniel J. Berger (Projects of this owner)
Homepage: http://rubyforge.org/projects/win32utils/
Download: http://rubyforge.org/download.php/346/win32-pipe-0.1.0.zip
License: Ruby's
Dependency:
None
Description:

Interface to named pipes on the Win32 platform.

Synopsis
========
require "win32/pipe"
include Win32

# In server.rb
pserver = Pipe.new_server("foo") # "foo" pipe server
pserver.connect
data = pserver.read
puts "Got #{data} from client"
pserver.close

# In client.rb
pclient = Pipe.new_client("foo") # Now, connect to "foo"
pclient.write("Hello World")
pclient.close

Versions: [0.2.1 (2009-08-10)] [0.2.0 (2008-05-29)] [0.1.2 (2005-03-01)] [0.1.1 (2004-08-26)] [0.1.0 (2004-06-07)]

Edit this project (for project owner)

back to RAA top