17 April, 2013

Operation Logic Executor - Assignment Description

  "Operation Logic Executor" will be series of posts related to task, for which I need to prepare proof of concept.

Assignment Details 
System contains various operations defined in classes implementing OperationLogic interface. According to provided data, it chooses correct operation and executes it. Currently all executions are synchronous. I need to add asynchronous execution and configurable locking mechanism, using Spring Framework. Declaration of OperationLogic can be changed.
public interface OperationLogic {
    void executeOperation(OperationData data) throws OperationFailedException;
}
Lets start...

No comments:

Post a Comment