summaryrefslogtreecommitdiffstats
path: root/lib/evendoors/twirl.rb
diff options
context:
space:
mode:
authorJérémy Zurcher <jeremy@asynk.ch>2012-05-04 09:56:41 +0200
committerJérémy Zurcher <jeremy@asynk.ch>2012-05-04 09:56:41 +0200
commit95a62fc57568e58930d6404d0ad2c331c469a1ea (patch)
treed0c95cc199464f4f3ec4142766cfe89a33b66775 /lib/evendoors/twirl.rb
parent2848c599841ae851238a361e7a6c27aa869ea100 (diff)
downloadedoors-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.rb4
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