Class: Converter Abstract
- Inherits:
-
Object
- Object
- Converter
- Includes:
- Logging
- Defined in:
- lib/business/converter/converter.rb
Overview
This class is abstract.
Abstract class that must be implemented to transform a specifical status from a Stream into a USMF standard message
Direct Known Subclasses
Constant Summary
Constants included from Logging
Instance Method Summary collapse
-
#to_usmf(status) ⇒ USMF
Parses a status into a USMF message.
Methods included from Logging
Instance Method Details
#to_usmf(status) ⇒ USMF
Parses a status into a USMF message
17 18 19 20 21 22 |
# File 'lib/business/converter/converter.rb', line 17 def to_usmf status logger.fatal('The method to_usmf in Converter must be implemented') raise 'This method must be implemented' end |