Class: IIInteractor::Context::Status
- Inherits:
-
Struct
- Object
- Struct
- IIInteractor::Context::Status
- Defined in:
- lib/ii_interactor/context.rb
Instance Attribute Summary collapse
-
#called ⇒ Object
Returns the value of attribute called.
-
#failed ⇒ Object
Returns the value of attribute failed.
-
#stopped ⇒ Object
Returns the value of attribute stopped.
Instance Method Summary collapse
-
#initialize ⇒ Status
constructor
A new instance of Status.
Constructor Details
#initialize ⇒ Status
Returns a new instance of Status.
6 7 8 9 10 |
# File 'lib/ii_interactor/context.rb', line 6 def initialize(*) self.failed = false self.stopped = false self.called = [] end |
Instance Attribute Details
#called ⇒ Object
Returns the value of attribute called
5 6 7 |
# File 'lib/ii_interactor/context.rb', line 5 def called @called end |
#failed ⇒ Object
Returns the value of attribute failed
5 6 7 |
# File 'lib/ii_interactor/context.rb', line 5 def failed @failed end |
#stopped ⇒ Object
Returns the value of attribute stopped
5 6 7 |
# File 'lib/ii_interactor/context.rb', line 5 def stopped @stopped end |