Class: Fairy::PInputIota

Inherits:
PSingleExportInput show all
Defined in:
lib/fairy/node/p-input-iota.rb

Constant Summary

Constants included from PSingleExportable

Fairy::PSingleExportable::END_OF_STREAM, Fairy::PSingleExportable::ST_EXPORT_FINISH, Fairy::PSingleExportable::ST_WAIT_EXPORT_FINISH

Constants inherited from PIOFilter

Fairy::PIOFilter::ST_WAIT_IMPORT

Constants inherited from PFilter

Fairy::PFilter::END_OF_STREAM, Fairy::PFilter::ST_ACTIVATE, Fairy::PFilter::ST_FINISH, Fairy::PFilter::ST_INIT

Instance Attribute Summary

Attributes included from PSingleExportable

#export

Attributes inherited from PFilter

#IGNORE_EXCEPTION, #id, #log_id, #ntask

Instance Method Summary collapse

Methods included from PSingleExportable

#start, #start_export, #terminate, #wait_export_finish

Methods inherited from PIOFilter

#input=

Methods inherited from PFilter

#abort_running, #basic_start, #break_running, #each, #global_break, #global_break_from_other, #handle_exception, #key, #key=, #next, #no, #no=, #notice_status, #processor, #start, #start_export, #start_watch_status, #status=, #terminate, #terminate_proc

Constructor Details

#initialize(id, ntask, bjob, opts) ⇒ PInputIota

Returns a new instance of PInputIota.



12
13
14
# File 'lib/fairy/node/p-input-iota.rb', line 12

def initialize(id, ntask, bjob, opts)
  super
end

Instance Method Details

#basic_each(&block) ⇒ Object



23
24
25
26
27
# File 'lib/fairy/node/p-input-iota.rb', line 23

def basic_each(&block)
  for i in @first..@last
	block.call i
  end
end

#open(niota_place) ⇒ Object



16
17
18
19
20
21
# File 'lib/fairy/node/p-input-iota.rb', line 16

def open(niota_place)
  self.no = niota_place.no

  @first = niota_place.first
  @last = niota_place.last
end