Class: Collavre::Orchestration::LoopBreaker::Result
- Inherits:
-
Data
- Object
- Data
- Collavre::Orchestration::LoopBreaker::Result
- Defined in:
- app/services/collavre/orchestration/loop_breaker.rb
Instance Attribute Summary collapse
-
#details ⇒ Object
readonly
Returns the value of attribute details.
-
#reason ⇒ Object
readonly
Returns the value of attribute reason.
-
#should_break ⇒ Object
readonly
Returns the value of attribute should_break.
Instance Method Summary collapse
Instance Attribute Details
#details ⇒ Object (readonly)
Returns the value of attribute details
24 25 26 |
# File 'app/services/collavre/orchestration/loop_breaker.rb', line 24 def details @details end |
#reason ⇒ Object (readonly)
Returns the value of attribute reason
24 25 26 |
# File 'app/services/collavre/orchestration/loop_breaker.rb', line 24 def reason @reason end |
#should_break ⇒ Object (readonly)
Returns the value of attribute should_break
24 25 26 |
# File 'app/services/collavre/orchestration/loop_breaker.rb', line 24 def should_break @should_break end |
Instance Method Details
#safe? ⇒ Boolean
29 30 31 |
# File 'app/services/collavre/orchestration/loop_breaker.rb', line 29 def safe? !should_break end |
#should_break? ⇒ Boolean
25 26 27 |
# File 'app/services/collavre/orchestration/loop_breaker.rb', line 25 def should_break? should_break end |