module Roby::DRoby::V5::Queries::TaskMatcherDumper

Public Instance Methods

droby_dump(peer, droby: DRoby) click to toggle source

Returns an intermediate representation of self suitable to be sent to the dest peer. klass is the actual class of the intermediate representation. It is used for code reuse by subclasses of TaskMatcher.

Calls superclass method
# File lib/roby/droby/v5/droby_dump.rb, line 980
def droby_dump(peer, droby: DRoby)
    droby = super(peer, droby: droby)
    droby.arguments.merge!(peer.dump(arguments))
    droby
end