Class: Roby::AndTaskMatcher::DRoby

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

Overview

An intermediate representation of AndTaskMatcher 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:



222
223
224
225
226
# File 'lib/roby/distributed/protocol.rb', line 222

def self._load(str) # :nodoc:
    args = Marshal.load(str)
    ops  = args.pop
    setup_matcher(AndTaskMatcher.new(*ops), args)
end