public
Description: Pipelined networking code with EventMachine
Homepage:
Clone URL: git://github.com/sproutit/pipeliner.git
name age message
file README Loading commit data...
file application.rb
directory config/
directory lib/
directory views/
README
EM.run {
  EM::add_timer(0) do
    EM::start_pipeline {
      EM::pipeline {
        puts "Hello!"
      }
      puts "DONE1"
    }
    puts "DONE2"
  end
}