class Roby::DRoby::V5::Queries::TaskMatcherDumper::DRoby

An intermediate representation of TaskMatcher objects suitable to be sent to our peers.

Attributes

arguments[R]

Public Class Methods

new(*args) click to toggle source
# File lib/roby/droby/v5/droby_dump.rb, line 964
def initialize(*args)
    @arguments = Hash.new
    super(*args)
end

Public Instance Methods

proxy(peer, matcher: Roby::Queries::TaskMatcher.new) click to toggle source
# File lib/roby/droby/v5/droby_dump.rb, line 969
def proxy(peer, matcher: Roby::Queries::TaskMatcher.new)
    super(peer, matcher: matcher)
    matcher.arguments.merge!(arguments.proxy(peer))
    matcher
end