public
Description: Pipelined networking code with EventMachine
Homepage:
Clone URL: git://github.com/sproutit/pipeliner.git
sproutit (author)
Sat Jun 07 01:00:08 -0700 2008
commit  67dddcb84584d7970d78f2e6abd1f69017c220b5
tree    6bbc88d4fcf3e5126238f460a75104c3bd9bafff
parent  b378476ddc307553064425f78f9a4ed6e81f1c92
name age message
file README Loading commit data...
README
EM.run {
  EM::add_timer(0) do
    EM::start_pipeline {
      EM::pipeline {
        puts "Hello!"
      }
      puts "DONE1"
    }
    puts "DONE2"
  end
}