I've declared an event on an HTTP Module so it will poll subscribers for a true/false value to determine if it should go ahead with its task of tweaking the HTTP Response. If only one subscriber answers true then it runs its logic.

Does this make sense?
Are there potential pitfalls I'm not seeing?

public class ResponseTweaker : IHttpModule {

    // to be a list of subscribers 
    List<Func<HttpApplication, bool>> listRespondants = new List<Func<HttpApplication, bool>>();

    // event that stores its subscribers in a collection
    public event Func<HttpApplication, bool> RequestConfirmation {
        add {
            listRespondants.Add(value);
        }
        remove {
            listRespondants.Remove(value);
        }
    }

    public void Init(HttpApplication context) {
        if (OnGetAnswer(context)) // poll subscribers ...
            // Conditionally Run Module logic to tweak Response ... 
    }

    /* Method that polls subscribers and returns 'true'
     *  if only one of them answers yes.
     */
    bool OnGetAnswer(HttpApplication app) {
        foreach (var respondant in listRespondants)
            if (respondant(app))
                return true;
        return false;
    }

    // etc...
}
link|improve this question

Not really a pitfall, but you will probably get slightly better performance if you use a HashSet (since order doesn't matter). And you don't need the outer if in OnGetAnswer, since it's safe to loop over an empty list or set. – Matthew Flaschen Nov 7 '10 at 0:26
@Matthew F: Thanks. I removed the redundant if. You could be right about HashSet but I'm not expecting a lot of subscribers and even less for them to remove themselves, so I will leave it as a List for now. – John K Nov 7 '10 at 0:31
1  
How are consumers subscribing to events? How do they get the handle to IHttpModule and at what event are they doing so? (my concern is if they will actually resubscribe when the app pool reloads) – Kirk Woll Nov 7 '10 at 0:44
@KirkW: Great question. I've already asked it over here ... stackoverflow.com/questions/4115955 I figure I'll end up putting the two answers together if they make sense. – John K Nov 7 '10 at 0:48
feedback

1 Answer

up vote 1 down vote accepted

I don't think it is a good idea. The amount of issues would depend on some factors like...

  1. listRespondants will be rooted and hence will have application lifetime. If there are a bunch of items that get added, the memory footprint would keep on increasing. So, it would rather come down to the number of items in this list.

The following can be a show stopper...

  1. IISReset or Application Domain recycle will remove all this information from your application. How are you planning to bring the items back in this list? Database?

  2. What if you have a Web farm. This application will not work as expected the moment you try to scale out. The reason being... even if you have the same module loaded on all the servers in the web farm the data in Worker Process is local. Hence the listRespondants would be different in all your servers unless you are loading it from some database.

link|improve this answer
This is very good info for consideration. Thanks. – John K Nov 7 '10 at 18:42
My pleasure John. – Rahul Soni Nov 8 '10 at 2:17
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.