Tagged Questions
12
votes
2answers
930 views
Implementing the command pattern
I am in the design process of an application, and I would like to use the command pattern for undo/redo purposes. I did some research into the command pattern but the only thing I don't get is: Should ...
5
votes
3answers
86 views
Callback/Command vs EventListener/Observer Pattern
I'm trying to design an async framework and wanted to know what people think are the pros/cons of the callback pattern vs the observer pattern.
Callback pattern:
//example callback
public interface ...
5
votes
2answers
130 views
Command Pattern seems needlessly complex (what am I failing to understand?)
I've read up on the Command Pattern, and I think I'm missing something. The Command object exists to abstract away the details of the Receiver object. It seems to me that we could simply stop here, ...
3
votes
7answers
220 views
In the Command pattern what do you call a command that groups together other commands?
This should be easy,
I am trying to come up with the name for a command class that is a collection of other commands. All the sub commands will be run, when the master command is run.
Any ideals?
3
votes
1answer
805 views
What is the Action Design Pattern?
What is the Action Design Pattern, I haven't heard of it before? I am suspecting it is the same as the Command Design pattern [wikipedia] but I can't find any resources on it.
2
votes
1answer
110 views
Ugly experience with Command Pattern: Any point in OOP?
I have implemented a command pattern in my system, mostly because I have several tiers and I need to 'invoke' logic remotely.
class DoWorkCommandMessage { int param; }
class DoWorkCommandHandler : ...
2
votes
3answers
162 views
Working on a solid Command Pattern with shared_ptr
I am trying to implement a very clean Command Pattern in a library.
I have the following structure right now (a few parts are still being finished up):
users (client-code) have some Object, call it ...
2
votes
1answer
209 views
Command Pattern Undo/Redo: Any issues with my approach?
I'm looking to implement a command pattern to support undo/redo in my application. The data is very closely tied together, so there are some downstream consequences of modifying some of my objects ...
2
votes
5answers
1k views
Command Pattern & parameter design
My understanding of the Command Pattern is that you simply have 1 virtual method 'execute()', and all dependencies that an implementation might have are put in the constructor or through setter ...
2
votes
2answers
782 views
Command Pattern: Executing multiple commands in sequence
I want to issue a series of Command executions, but only when the prior command succeeded. Right now i am raising an event within the command object indicating whether the command succeeded or failed. ...
1
vote
3answers
94 views
using the command and factory design patterns for executing queued jobs
I have a list of jobs queued in the database which I need to read from database and execute them in parallel using threading and I have a list of command classes to execute each of those jobs all ...
1
vote
1answer
50 views
Validating commands before execution
In the system I'm currently building, I use the command pattern to carry out all operations possible. I have chosen the CommandMessage and CommandHandler approach, separating logic from data.
This ...
1
vote
1answer
58 views
Why Command Pattern when a client can call the method directly from reciever instance?
Recently I have come across Command Pattern. In this pattern Client is responsible for creating the instances of Reciever, ConcreteCommand and Invoker. At some point of time (Lets say that in a Button ...
1
vote
1answer
158 views
To use multithreading, is Command pattern more useful than Decorator pattern?
Having seen how Command pattern was used in a previous project, I can understand how it can be useful in multithreaded (parallel) programming, because Commands can be executed in different threads. ...
1
vote
4answers
97 views
Confused about the Comand Pattern
I am currently taking a software design course. I myself have never been really good at designing software systems so I thought it was a smart move to patch up my weakness ;)
I am trying to ...
1
vote
1answer
34 views
Get change commands without modifying collection
Probably a very poorly named title, but anyway...
I am using the command pattern on a hierarchical data set. So basically I need a method that returns an object that describes the changes that will ...
1
vote
3answers
2k views
Implementing the Command Pattern using C# Action delegate
Is it possible implement the GOF command pattern using a Queue of Action delegates?
I have been trying to wrap my head around it for a while and I am stumped because each of the possible actions I ...
1
vote
3answers
263 views
Persistent Command pattern
what I am trying to achieve is to have a persistent list of "undoable" changes on a persistent storage (database).
The architecture employs repositories for the domain objects and Unit of Work for ...
1
vote
2answers
844 views
How do I use the command pattern to reduce the complexity of a menu?
Say I have 4 buttons and I want each one to do a different thing. I don't want a big switch statement where I do a different thing based on which button was pushed, nor do I want a separate method for ...
1
vote
1answer
457 views
Command Pattern: Client and Invoker
In the command pattern:
Why shouldn't the client participant be the same class as the invoker participant? Is there possible scenarios when the client participant and the invoker participant can be ...
0
votes
2answers
190 views
Observer and Command design pattern, why menu commonly uses command pattern?
All is in the question, why menus are commonly implemented with the Command Design Pattern and not with the Observer pattern ?
0
votes
1answer
237 views
What object-oriented GUI design would properly combine Command and Observer patterns?
Is there an object-oriented GUI design that would be a reasonable combination of the Command and Observer patterns?
My Java GUI attempts to combine Command and Observer patterns as follows:
the ...
0
votes
0answers
70 views
Command Pattern: Warn user that command won't work ahead of time?
I have a model class that holds some arrays of useful objects. To simplify, lets just say it's this:
class ObjectModel
{
public var array:Array = new Array();
public function ...
0
votes
3answers
202 views
Is an anonymous function a good way to implement the command pattern?
I'm quite new to this pattern...