diff options
author | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-04 09:56:41 +0200 |
---|---|---|
committer | Jérémy Zurcher <jeremy@asynk.ch> | 2012-05-04 09:56:41 +0200 |
commit | 95a62fc57568e58930d6404d0ad2c331c469a1ea (patch) | |
tree | d0c95cc199464f4f3ec4142766cfe89a33b66775 /lib/evendoors/twirl.rb | |
parent | 2848c599841ae851238a361e7a6c27aa869ea100 (diff) | |
download | edoors-ruby-95a62fc57568e58930d6404d0ad2c331c469a1ea.zip edoors-ruby-95a62fc57568e58930d6404d0ad2c331c469a1ea.tar.gz |
add _p suffix to methods process, process_sys and receive
Diffstat (limited to 'lib/evendoors/twirl.rb')
-rw-r--r-- | lib/evendoors/twirl.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/evendoors/twirl.rb b/lib/evendoors/twirl.rb index 30ef169..5aa7d25 100644 --- a/lib/evendoors/twirl.rb +++ b/lib/evendoors/twirl.rb @@ -41,11 +41,11 @@ module EvenDoors while @sys_fifo.length>0 or @app_fifo.length>0 while @sys_fifo.length>0 p = @sys_fifo.shift - p.door.process_sys p + p.door.process_sys_p p end while @app_fifo.length>0 p = @app_fifo.shift - p.door.process p + p.door.process_p p end end end |