Flowdock
method

add_listener

Importance_1
Ruby latest stable (v2_5_5) - 0 notes - Class: Test::Unit::Util::Observable

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v1_8_7_330) is shown here.

These similar methods exist in v2_5_5:

add_listener(channel_name, listener_key=NOTHING) public

Adds the passed proc as a listener on the channel indicated by channel_name. listener_key is used to remove the listener later; if none is specified, the proc itself is used.

Whatever is used as the listener_key is returned, making it very easy to use the proc itself as the listener_key:

listener = add_listener("Channel") { ... }
remove_listener("Channel", listener)
Show source
Register or log in to add new notes.