Method: Fairy::Controller#assign_input_processor

Defined in:
lib/fairy/controller.rb

#assign_input_processor(bjob, host, &block) ⇒ Object

methods of assgin processor.



431
432
433
434
435
436
437
438
439
440
441
442
# File 'lib/fairy/controller.rb', line 431

def assign_input_processor(bjob, host, &block)
  node = @master.node_in_reisured(host)
  unless node
  begin
    ERR::Raise ERR::NodeNotArrived, host 
  rescue
    handle_exception($!)
    raise AbortCreateNode
  end
  end
  create_processor(node, bjob, &block)
end