Class: Roby::NegateTaskMatcher::DRoby

Inherits:
TaskMatcher::DRoby show all
Defined in:
lib/roby/distributed/protocol.rb

Overview

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

Instance Attribute Summary

Attributes inherited from TaskMatcher::DRoby

#args

Class Method Summary collapse

Methods inherited from TaskMatcher::DRoby

#_dump, #initialize, setup_matcher

Constructor Details

This class inherits a constructor from Roby::TaskMatcher::DRoby

Class Method Details

._load(str) ⇒ Object

:nodoc:



241
242
243
244
245
# File 'lib/roby/distributed/protocol.rb', line 241

def self._load(str) # :nodoc:
    args = Marshal.load(str)
    op  = args.pop
    setup_matcher(NegateTaskMatcher.new(op), args)
end