kschiess / cod

Small framework to simplify process-to-process communication.

Home Page:http://kschiess.github.io/cod/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Some people, when confronted with a problem, think "I know, I'll use
multithreading". Nothhw tpe yawrve o oblems.[1]

Don't use threads, use processes. This is the toolkit for interprocess
communication that makes it real simple. A good place to start is the
documentation for the Cod module.

SYNOPSIS

  # Cod's basic elements are channels, unidirectional communication links. 
  pipe = Cod.pipe
  
  # You can use those either directly: 
  pipe.put :some_ruby_object        # Process A
  pipe.get # => :some_ruby_object   # Process B
  
  # Or use them as bricks for more: 
  service = beanstalk.service
  client  = beanstalk.client(pipe)
  
  service.one { |msg| :response }               # Process A
  client.call :ruby_object    # => :response    # Process B
    
STATUS

Working library. Some rough edges and potential for growth. Have a look at the 
Cod module to get started.

Working transports include: 

* process (spawn, connecting to $stdout and $stdin)
* stdio (connects to $stdout and $stdin of current process)
* pipe (akin to IO.pipe)
* tcp (server and client)
* beanstalk (connects to beanstalkd)

At version 0.5.0

(c) 2011-2015 Kaspar Schiess

[1] https://twitter.com/rogerbraun/status/160813717502705664

About

Small framework to simplify process-to-process communication.

http://kschiess.github.io/cod/

License:MIT License


Languages

Language:Ruby 66.4%Language:HTML 29.4%Language:CSS 4.1%Language:Shell 0.1%