Class: QB::Execution
- Inherits:
-
Object
- Object
- QB::Execution
- Includes:
- NRSER::Props::Mutable::InstanceVariables
- Defined in:
- lib/qb/execution.rb
Overview
An object that encapsulates an execution of the QB program.
Instance Attribute Summary collapse
- #started_at ⇒ Object readonly
Instance Method Summary collapse
-
#initialize(values = {}) ⇒ Execution
constructor
Instantiate a new
QB::Execution
.
Constructor Details
#initialize(values = {}) ⇒ Execution
Instantiate a new QB::Execution
.
74 75 76 |
# File 'lib/qb/execution.rb', line 74 def initialize values = {} initialize_props values end |
Instance Attribute Details
#started_at ⇒ Object (readonly)
57 58 59 60 |
# File 'lib/qb/execution.rb', line 57 prop :started_at, type: Time, writer: false, default: -> { Time.current } |