Type:
Class
A NotifyTemplateEntry is returned by Rinda::TupleSpace#notify and is notified of TupleSpace changes. You may receive either your subscribed event or the 'close' event when iterating over notifications.
See TupleSpace#notify_event for valid notification types.
Example
1 2 3 4 5 6 7 8 | ts = Rinda::TupleSpace. new observer = ts.notify 'write' , [ nil ] Thread .start do observer. each { |t| p t } end 3 .times { |i| ts.write [i] } |
Outputs:
1 2 3 | [ 'write' , [ 0 ]] [ 'write' , [ 1 ]] [ 'write' , [ 2 ]] |