Class: Roby::AndTaskMatcher::DRoby
- Inherits:
-
TaskMatcher::DRoby
- Object
- TaskMatcher::DRoby
- Roby::AndTaskMatcher::DRoby
- 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
Class Method Summary collapse
-
._load(str) ⇒ Object
:nodoc:.
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 |