Exception: RubyJard::ReplProxy::FlowInterrupt
- Inherits:
-
StandardError
- Object
- StandardError
- RubyJard::ReplProxy::FlowInterrupt
- Defined in:
- lib/ruby_jard/repl_proxy.rb
Overview
A tool to communicate between functional threads and main threads
Instance Attribute Summary collapse
-
#flow ⇒ Object
readonly
Returns the value of attribute flow.
Instance Method Summary collapse
-
#initialize(msg = '', flow = nil) ⇒ FlowInterrupt
constructor
A new instance of FlowInterrupt.
Constructor Details
#initialize(msg = '', flow = nil) ⇒ FlowInterrupt
Returns a new instance of FlowInterrupt.
61 62 63 64 |
# File 'lib/ruby_jard/repl_proxy.rb', line 61 def initialize(msg = '', flow = nil) super(msg) @flow = flow end |
Instance Attribute Details
#flow ⇒ Object (readonly)
Returns the value of attribute flow.
59 60 61 |
# File 'lib/ruby_jard/repl_proxy.rb', line 59 def flow @flow end |