Class: OrigenARM::Interface
- Inherits:
-
Object
- Object
- OrigenARM::Interface
- Includes:
- OrigenTesters::ProgramGenerators
- Defined in:
- lib/origen_arm/interface.rb
Instance Method Summary collapse
-
#shutdown(options = {}) ⇒ Object
This will be called at the end of every flow or sub-flow (at the end of every Flow.create block).
-
#startup(options = {}) ⇒ Object
This will be called at the start of every flow or sub-flow (whenever Flow.create is called).
Instance Method Details
#shutdown(options = {}) ⇒ Object
This will be called at the end of every flow or sub-flow (at the end of every Flow.create block). Any options passed to Flow.create will be passed in here. The options will contain top_level: true, whenever this is called at the end of a top-level flow file.
18 19 |
# File 'lib/origen_arm/interface.rb', line 18 def shutdown( = {}) end |
#startup(options = {}) ⇒ Object
This will be called at the start of every flow or sub-flow (whenever Flow.create is called). Any options passed to Flow.create will be passed in here. The options will contain top_level: true, whenever this is called at the start of a new top-level flow.
10 11 |
# File 'lib/origen_arm/interface.rb', line 10 def startup( = {}) end |