Class: Solace::Instructions::Base
- Inherits:
-
Object
- Object
- Solace::Instructions::Base
- Defined in:
- lib/solace/instructions/base.rb
Direct Known Subclasses
Class Method Summary collapse
-
.build ⇒ Solace::Instruction
Must implement build method.
-
.data ⇒ Array<Integer>
Must implement data method.
Class Method Details
.build ⇒ Solace::Instruction
Must implement build method
8 9 10 |
# File 'lib/solace/instructions/base.rb', line 8 def build raise NotImplementedError, "Subclasses must implement build method" end |
.data ⇒ Array<Integer>
Must implement data method
15 16 17 |
# File 'lib/solace/instructions/base.rb', line 15 def data raise NotImplementedError, "Subclasses must implement data method" end |