> From: Alex Karasulu [mailto:[EMAIL PROTECTED] > > Yes that would be most excellent. You're setting up the > routing so to > speak - rather the implicit dependencies between these event driven > components. If you can centralize the event->method call > transformation logic or event generate it from declarative > meta data your really phat!
There's a general way of doing this: Use a dynamic proxy. In the invocation handler, make an event of the Method and the Object[] that are the argments for the method. There you go, an encapsulated method call that you can enqueue. To convert back to a method call, just invoke the method on the target object with the args. (Works in C++ as well.) /LS --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
