Module: Nanite::Actor::InstanceMethods
- Defined in:
- lib/nanite/actor.rb
Overview
ClassMethods
Instance Method Summary collapse
-
#push(*args) ⇒ Object
Send nanite push to another agent (through the mapper).
-
#query_tags(*args, &blk) ⇒ Object
Send nanite tag query to mapper.
-
#request(*args, &blk) ⇒ Object
Send nanite request to another agent (through the mapper).
Instance Method Details
#push(*args) ⇒ Object
Send nanite push to another agent (through the mapper)
66 67 68 |
# File 'lib/nanite/actor.rb', line 66 def push(*args) MapperProxy.instance.push(*args) end |
#query_tags(*args, &blk) ⇒ Object
Send nanite tag query to mapper
71 72 73 |
# File 'lib/nanite/actor.rb', line 71 def (*args, &blk) MapperProxy.instance.(*args, &blk) end |
#request(*args, &blk) ⇒ Object
Send nanite request to another agent (through the mapper)
61 62 63 |
# File 'lib/nanite/actor.rb', line 61 def request(*args, &blk) MapperProxy.instance.request(*args, &blk) end |