Module: Nanite::Actor::InstanceMethods

Defined in:
lib/nanite/actor.rb

Overview

ClassMethods

Instance Method Summary collapse

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 query_tags(*args, &blk)
  MapperProxy.instance.query_tags(*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