Changes between Version 13 and Version 14 of signals


Ignore:
Timestamp:
12/01/2010 09:56:00 AM (13 years ago)
Author:
marcel.taeumel
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • signals

    v13 v14  
    5656
    5757= How to Use =
     58
     59== Terms ==
     60
     61A ''signal'' is a method that can be called to trigger a callback. Then the signal will be ''emitted''.
     62
     63A ''callback'' is the method that is called or the process that is involved in performing this method call in response to an emitted signal.
     64
     65A ''connection'' is a pair of signal and callback. The pair is used to lookup all callbacks whenever a signal is emitted. A signal can have multiple connections.
    5866
    5967== Implementing Signals ==
     
    533541}}}
    534542
    535 == Terms ==
    536 
    537 A ''signal'' is a method that can be called to trigger a callback. Then the signal will be ''emitted''.
    538 
    539 A ''callback'' is the method that is called or the process that is involved in performing this method call in response to an emitted signal.
    540 
    541 A ''connection'' is a pair of signal and callback. The pair is used to lookup all callbacks whenever a signal is emitted. A signal can have multiple connections.
    542 
    543543
    544544= Acknowledgments =