class Kcl::RecordProcessor
Public Instance Methods
after_initialize(_initialization_input)
click to toggle source
# File lib/kcl/record_processor.rb, line 2 def after_initialize(_initialization_input) raise NotImplementedError.new("You must implement #{self.class}##{__method__}") end
process_records(_records_input)
click to toggle source
# File lib/kcl/record_processor.rb, line 6 def process_records(_records_input) raise NotImplementedError.new("You must implement #{self.class}##{__method__}") end
shutdown(_shutdown_input)
click to toggle source
# File lib/kcl/record_processor.rb, line 10 def shutdown(_shutdown_input) raise NotImplementedError.new("You must implement #{self.class}##{__method__}") end