public
Description: Pipelined networking code with EventMachine
Homepage:
Clone URL: git://github.com/sproutit/pipeliner.git
name age message
file README Sat Jun 07 01:00:08 -0700 2008 Updated with initial code and demo [sproutit]
file application.rb Sun Jun 08 15:43:51 -0700 2008 Initial commit of sample app [sproutit]
directory config/ Sun Jun 08 15:43:51 -0700 2008 Initial commit of sample app [sproutit]
directory lib/ Sun Jun 08 15:43:51 -0700 2008 Initial commit of sample app [sproutit]
directory views/ Sun Jun 08 15:43:51 -0700 2008 Initial commit of sample app [sproutit]
README
EM.run {
  EM::add_timer(0) do
    EM::start_pipeline {
      EM::pipeline {
        puts "Hello!"
      }
      puts "DONE1"
    }
    puts "DONE2"
  end
}