Dear all,
I want to create a Queue to add events that have been raised to, so later these events can be popped off the Queue stack and an appropriate Event Handler can be assigned. I wondered if this is actually possible?
How do I add events to a Queue?
So here's how it should go:
1. Raise an event ( no event handler for it exists yet )
2. Add this raised event to a Queue ( or a reference to it )
3. Sometime later... Take event off Queue and assign handler
4. Execute Handler
Hope somebody can help?
I want to create a Queue to add events that have been raised to, so later these events can be popped off the Queue stack and an appropriate Event Handler can be assigned. I wondered if this is actually possible?
How do I add events to a Queue?
So here's how it should go:
1. Raise an event ( no event handler for it exists yet )
2. Add this raised event to a Queue ( or a reference to it )
3. Sometime later... Take event off Queue and assign handler
4. Execute Handler
Hope somebody can help?
Comment