Version 3 of event-oriented programming

Updated 2001-10-11 13:21:21

There are many ways to manage concurrency: with threads, co-routines, continuations, generators, ... and events. A page on Event programming and why it is relevant to Tcl/Tk programming explains some of the background behind Tcl's emphasis of the latter.

Events are a relatively "safe" programming model, particularly when compared to threading. John Ousterhout's influential "Why Threads Are A Bad Idea" is available only as PowerPoint slides [L1 ].

Notice that C# makes events first-class objects. This is consistent with Anders Hejlsberg's earlier work with Delphi ...


This Wiki has several other pages [L2 ] on event-oriented programming techniques.