Class: Kcl::RecordProcessor
- Inherits:
-
Object
- Object
- Kcl::RecordProcessor
- Defined in:
- lib/kcl/record_processor.rb
Instance Method Summary collapse
- #after_initialize(_initialization_input) ⇒ Object
- #process_records(_records_input) ⇒ Object
- #shutdown(_shutdown_input) ⇒ Object
Instance Method Details
#after_initialize(_initialization_input) ⇒ Object
2 3 4 |
# 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) ⇒ Object
6 7 8 |
# 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) ⇒ Object
10 11 12 |
# File 'lib/kcl/record_processor.rb', line 10 def shutdown(_shutdown_input) raise NotImplementedError.new("You must implement #{self.class}##{__method__}") end |