Class: Harvester

Inherits:
IOAble show all
Defined in:
lib/LRH.rb

Direct Known Subclasses

NullHarvester, StubHarvester

Instance Method Summary collapse

Methods inherited from IOAble

#debug!, #debug?, #get_option, #halt!, #job=, #log, #set_option

Constructor Details

#initializeHarvester

Returns a new instance of Harvester.



200
201
202
# File 'lib/LRH.rb', line 200

def initialize
    super
end

Instance Method Details

#_harvest(partial) ⇒ Object



204
205
206
# File 'lib/LRH.rb', line 204

def _harvest(partial)
    return harvest(partial)
end

#_resultObject



208
209
210
# File 'lib/LRH.rb', line 208

def _result
    return result()
end

#harvest(partial) ⇒ Object



212
213
# File 'lib/LRH.rb', line 212

def harvest(partial)
end

#resultObject



215
216
217
# File 'lib/LRH.rb', line 215

def result
    return nil
end