-
Notifications
You must be signed in to change notification settings - Fork 5
/
README
58 lines (44 loc) · 1.48 KB
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
== Description
A Ruby interface for named pipes on Windows.
== Prerequisites
ffi
== Installation
gem install win32-pipe
== Synopsis
require 'win32/pipe'
include Win32
# In server.rb
pipe_server = Pipe::Server.new("foo_pipe")
pipe_server.connect
data = pipe_server.read
puts "Got #{data} from client"
pipe_server.close
# In client.rb (run from a different shell)
pipe_client = Pipe::Client.new("foo_pipe")
pipe_client.write("Hello World")
pipe_client.close
== What's a named pipe?
A pipe with a name - literally. In practice, it will feel more like a cross
between a socket and a pipe. At least, it does to me.
== What good is it?
My hope is that it can be used in certain circumstances where a fork might
be desirable, but which is not possible on Windows. It could also be handy
for the traditional "piping data to a server" usage. And if you come up
with anything cool, please let us all know!
== Contributions
Although this library is free, please consider having your company
setup a gittip if used by your company professionally.
http://www.gittip.com/djberg96/
== Future Plans
Add transactions
== License
Artistic 2.0
== Warranty
This package is provided "as is" and without any express or
implied warranties, including, without limitation, the implied
warranties of merchantability and fitness for a particular purpose.
== Copyright
(C) 2003-2014, Daniel J. Berger, All Rights Reserved.
== Authors
Daniel Berger
Park Heesob