Class: Roby::DRoby::V5::Queries::AndMatcherDumper::DRoby
- Defined in:
- lib/roby/droby/v5/droby_dump.rb
Overview
An intermediate representation of AndMatcher objects suitable to be sent to our peers.
Instance Attribute Summary collapse
-
#ops ⇒ Object
readonly
Returns the value of attribute ops.
Instance Method Summary collapse
-
#initialize(ops) ⇒ DRoby
constructor
A new instance of DRoby.
- #proxy(peer) ⇒ Object
Constructor Details
#initialize(ops) ⇒ DRoby
Returns a new instance of DRoby.
790 791 792 |
# File 'lib/roby/droby/v5/droby_dump.rb', line 790 def initialize(ops) @ops = ops end |
Instance Attribute Details
#ops ⇒ Object (readonly)
Returns the value of attribute ops.
788 789 790 |
# File 'lib/roby/droby/v5/droby_dump.rb', line 788 def ops @ops end |
Instance Method Details
#proxy(peer) ⇒ Object
794 795 796 |
# File 'lib/roby/droby/v5/droby_dump.rb', line 794 def proxy(peer) Roby::Queries::AndMatcher.new(*peer.local_object(ops)) end |