class Mclone::Session::IntactTaskSet

Session-bound set of intact tasks for which both source and destination volumes are loaded

Public Instance Methods

<<(task) click to toggle source

Accept only intact tasks for which both source and destination volumes are loaded

Calls superclass method Mclone::TaskSet#<<
# File lib/mclone.rb, line 675
def <<(task)
  @session.volumes.volume(task.source_id).nil? || @session.volumes.volume(task.destination_id).nil? ? task : super
end