Linked by Eugenia Loli on Sun 22nd Apr 2007 07:43 UTC
Thread beginning with comment 232917
To view parent comment, click here.
To read all comments associated with this story, please click here.
To view parent comment, click here.
To read all comments associated with this story, please click here.
"I thought this is why we used the delegate event model, or the event subscriber model, so that we didn't have to monitor all this stuff?"
You are absolutely 100% correct. I have no idea why the author went through all the pains of setting up all the callbacks/polling/whatever you want to call it, by hand in this example when delegates (Name EventHandler delegates) would have more than sufficed, as well as made the code much more readable, and smaller.
It's almost like he went out of his way to do it the Java way ;-).
Yeah I am just going to assume that this author closely relates to this article. http://worsethanfailure.com/Articles/The_Complicator_0x27_s_Bicycle...




Member since:
2005-07-10
I thought this is why we used the delegate event model, or the event subscriber model, so that we didn't have to monitor all this stuff?