Can any one explain with simple example of Command Pattern. I refer in internet but i got confused.
|
For the most part, commands are immutable and contain instructions that encapsulate a single action that is executed on demand. You might also have a RuntimeCommand that accepts instructions upon execution, but this delves more into the Strategy or Decorator Patterns depending on the implementations. In my own opinion, I think it's very important to heed the immutable context of a command otherwise the command becomes a suggestion. For instance:
I personally don't really like commands. In my own experience, they only work well for framework callbacks. If it helps, think of a command in a metaphorical sense; a trained soldier is given a command by his/her commanding officer, and on demand the soldier executes this command. |
|||||||
|
|
My requirement is to perform a sequence of tasks (which can be re-used in several Usecases) each with its own exception flow. Found Command pattern's implementation logical here. I am trying to make it like each action executed by the command (whether normal/alternate flow) can be an exception handler too. However, If the command is registered with another handler then this should be used. Any suggestions for improvement/correction are welcome.
}
|
||||
|
|
|
Core J2EE Patterns: Best Practices and Design Strategies. http://www.amazon.com/Core-J2EE-Patterns-Strategies-ebook/dp/B000OZ0N4E/ref=sr_1_2?ie=UTF8&qid=1319056489&sr=8-2 "Core J2EE Patterns: Best Practices and Design Strategies" |
|||
|
|