summaryrefslogtreecommitdiffstats
path: root/lib/edoors/board.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/edoors/board.rb')
-rw-r--r--lib/edoors/board.rb19
1 files changed, 19 insertions, 0 deletions
diff --git a/lib/edoors/board.rb b/lib/edoors/board.rb
index 27c5c85..5a5d089 100644
--- a/lib/edoors/board.rb
+++ b/lib/edoors/board.rb
@@ -82,6 +82,25 @@ module Edoors
_garbage if not @saved.nil?
end
#
+ # stores back the given Particle
+ #
+ # @param [Particle] p the particle to be stored
+ #
+ # this can be used to prevent the overhead of sending the particle back to self
+ #
+ def keep! p
+ @postponed[p.link_value] = p
+ @saved = nil
+ end
+ #
+ # sends away all stored Particle
+ #
+ def flush!
+ while p=@postponed.shift
+ send_p p[1]
+ end
+ end
+ #
end
#
end