module Roby::DRoby::V5::Actions::Models::CoordinationActionDumper

Public Instance Methods

droby_dump!(peer) click to toggle source
# File lib/roby/droby/v5/droby_dump.rb, line 758
def droby_dump!(peer)
    super
    @coordination_model = nil
end
proxy(peer) click to toggle source
Calls superclass method
# File lib/roby/droby/v5/droby_dump.rb, line 746
def proxy(peer)
    existing, interface_model = proxy_from_existing(peer)
    if existing
        return existing
    else
        action = super(peer)
        action.coordination_model =
            interface_model.create_coordination_model(action, Coordination::Actions) {}
        action
    end
end