Yet another C# developer with a blog.
Browse by Tags
All Tags »
Delegates »
ThreadPool (
RSS)
-
|
Here we are at the final entry for my event broker solution. If you just stumbled upon CODEGATOR then go back a few days and start reading from the entry entitled" "An event broker solution - part 1". If you've read all the posts in...
|
-
|
Up to this point we have covered all of the support classes for the event broker solution, as well as the registration process for the EventBroker class. Today I'm going to discuss the process of un-registering a previously registered publisher or...
|
-
|
OK, what have we done at this point? Well, we talked about what an event broker is and how I would like to use one in a future project. I warned everyone about how new my code is, and about how I'm likely to change things down the road. We looked...
|
-
|
Last time we finished looking at the model classes that the event broker uses to represent publisher and subscribers. Today we'll look at the attribute classes that the event broker uses to locate publishers and subscribers at runtime. Lets start...
|
-
|
Last time I covered the EventPublisherModel class. Today I'll cover the EventSubscriberModel class, which is used to represent an event subscriber to the event broker. The code for the class looks like this: internal sealed class EventSubscriberModel...
|
-
|
Last time I discussed what I wanted an event broker for and how I envisioned using one in a project. This time I'm going to continue by talking more about my particular event broker solution. I'll also try to cover some code internals. Since I...
|