Method: Async::Node#stop
- Defined in:
- lib/async/node.rb
#stop(later = false) ⇒ Object
Attempt to stop the current node immediately, including all non-transient children. Invokes #stop_children to stop all children.
286 287 288 289 |
# File 'lib/async/node.rb', line 286 def stop(later = false) # The implementation of this method may defer calling `stop_children`. stop_children(later) end |