Skip to content
This repository has been archived by the owner on Oct 11, 2020. It is now read-only.

picatz/slipstream

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Slipstream

Simple API for IPC (inter-process communication) using IO pipes.

Installation

$ gem install slipstream

Usage

require 'slipstream'

# create a new stream
stream = Slipstream.create

# fork'd processes can observe the stream
child = fork do 
  loop do
    print stream.read
  end
end

# write to the stream, notice that it's printed to the scren
stream.write "Hello world!"

# close the stream
stream.close!

License

The gem is available as open source under the terms of the MIT License.

About

🛩 Simple API for IPC (inter-process communication) using IO pipes.

Resources

License

Code of conduct

Stars

Watchers

Forks

Packages

No packages published