Nevermind, I found a solution myself, I can hook into
kernel.ComponentCreated like
kernel.ComponentCreated += (model, instance) => {
var exec = instance as IAdviceExecutor;
if (exec != null && exec.IsMarkedForDisposition) {
kernel.RemoveComponent(model.Name);
}
};
This should fix the bloating problem.
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"Castle Project Users" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/castle-project-users?hl=en
-~----------~----~----~----~------~----~------~--~---