Method: Lowdown::Connection::Monitor#__register_lowdown_crash_condition__
- Defined in:
- lib/lowdown/connection/monitor.rb
permalink #__register_lowdown_crash_condition__(condition) ⇒ void
This method returns an undefined value.
Adds a condition to the list of conditions to be notified when an actors dies because of an unhandled exception.
61 62 63 64 65 |
# File 'lib/lowdown/connection/monitor.rb', line 61 def __register_lowdown_crash_condition__(condition) @lowdown_crash_conditions_mutex.synchronize do @lowdown_crash_conditions << condition end end |