What is the difference between method and event.
Difference between method and event
Collapse
X
-
Tags: None
-
An event is an object that is fired by (another) object and sent to zero or moreOriginally posted by gsreenathreddyWhat is the difference between method and event.
'listeners'. Listeners have ordinary methods that are supposed to 'handle' the
event. Listeners are also objects and objects have 'behaviour' implemented by
methods.
kind regards,
Jos
Comment