Tag Desgin-Pattens
13
Aug
2011
Domain Events - take 2
My last post was some of my thoughts as my understanding progresses, I did not achieve a domain event, however I was able to publish events from any object which could be injected on.When it comes to raising domain events on a domain class, you shoul Read more
11
Aug
2011
Domain events and Event Publisher
quick get out clause, I am very new to this topic, however I feel there is a lot to be learned here.In this article I wanted to post some code of an Event Publisher, its a slight alteration to the one located here, you can ;also find a similar idea i Read more
11
Aug
2011
Simple AOP proxying with classes
A couple of ways to create an object with a logging interceptorProxyGenerator generator = new ProxyGenerator(new PersistentProxyBuilder()); //way 1 Person person = new Person(29, "David"); person = generator.CreateClassProxyWithTarget<Person& Read more
23
Jun
2010