2
votes
1answer
173 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.
1
vote
1answer
103 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 …
0
votes
2answers
28 views
unable to return to main() from a method reading standard input stream
I am basically trying to return from a method which reads user input from the standard input stream. Since the user has the option to quit the application, I am trying to figure ou …
0
votes
2answers
139 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 …
0
votes
3answers
99 views
Is an anonymous function a good way to implement the command pattern?
I'm quite new to this pattern...
0
votes
2answers
113 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 …
