资 源 简 介
A new intuitive DTO architecture, that provides for:
Caching - Cached event-driven business operations.
Event Broadcasting - Well managed event broadcasting system with well timed flush operations.
Efficient transaction Management and handling - Allows better transaction management with event broadcasting system working with cache together.
Easy to use - Only takes three steps to use, for example:
final Model actorModel = new Model(1L); final CreateEvent createEvent = new CreateEvent(actorModel); new CreateModelDTO().broadcast(createEvent);
Will do the trick! and delegate to the framework to persist the actor model to the database with an identifier of 1. (Off course internally it takes care transactions etc. in and by itself).