the command pattern is a design pattern in which an object is used to represent and encapsulate all the information needed to call a method at a later time.
3
votes
1answer
245 views
Display data from a database using JSP, Servlets, JSTL and Command Pattern
I'm trying to display data from a database, but nothing happens on JSP. I used a design pattern Command. Where is my problem?
Structure of Command design pattern:
Here is my code:
JSP page:
...
0
votes
2answers
63 views
How can I inject a Command Validator and update ModelState before Action starts
A lot of our architecture is orientated around Commands ICommandHandler. We post a Command model to the controller action. The command/model is then validated in each action by running validator (if ...
3
votes
1answer
146 views
In C# how do I properly implement the Command Design Pattern?
I'm currently studying design patterns and I'm currently on Command Pattern.
Here is my current code:
//this is the reciever
class Calculator : IReciever
{
int x;
int y;
CommandOptions ...
0
votes
3answers
233 views
wpf MvvM Command data-context issue
I googled all I could but could not find exactly what I was looking for. I have few issues...
This is my code structure:
My Command Class:
public class BrowseCommand : ICommand
{
//Code here
...
0
votes
1answer
97 views
Command Design Pattern is implemented with some mistakes?
Here in Russian Wikipedia link there is an example of C++ implementation of Command Design Pattern. As I understand from the implementation comparing with the UML class diagram I see that:
class ...
0
votes
1answer
79 views
Ways to attached an ICommand to a control in XAML
I'm very new to XAML. To utilize MVC architecture and the Command Pattern while taking advantage of XAML, I have started binding static ICommands to Buttons. I'm working on a fairly large project ...
0
votes
1answer
114 views
Serializing/Deserializing Command Object
I'm attempting to serialize (and later deserialize) a command object to a string (preferably using the JavaScriptSerializer). My code compiles, however when I serialize my command object it returns an ...
6
votes
2answers
158 views
Calling an action of another controller - Design consideration for File Uploader - MVC 4
I have a situation where I'm debating how to architect my controllers.
Consider the following controller:
public class FileSharingController : Controller
{
private readonly ...
2
votes
3answers
65 views
Error Reporting
I have a class that follows the Command Pattern.
It has 2 methods which are Execute, and CanExecute which checks whether to invoke Execute or not (they derive from ICommand).
CanExecute invokes a few ...
0
votes
1answer
72 views
Keeping track of parameters using a Command Pattern and ICommand for Undo/Redo. Storing multiple commands?
I've been working on a WPF application that involves moving many shapes. It is mostly MVVM and relies heavily on commands. I had not worried about Undo/Redo until just recently. I don't think it will ...
1
vote
3answers
231 views
Ideas for memory management, std::map, boost::shared_ptr
This question is long so please bear with me.
I'm attempting to solve a dilemma I'm having with memory management, shared pointers, and maps. I just wanted to get some feedback about my architecture, ...
0
votes
0answers
45 views
Switching frames with command pattern
I'm trying to create an intro animation for my flash game, but when it's supposed to go to the second frame of the animation things go wrong.
This is the code (located in the document class) that the ...
23
votes
5answers
695 views
Well designed query commands and/or specifications
I've been searching for quite some time for a good solution to the problems presented by the typical Repository pattern (growing list of methods for specialized queries, etc.. see: ...
1
vote
2answers
201 views
Command pattern along with Chain of responsibility
In my application, I need to load data from a DB in a certain sequence of steps, example load all customers, then load all orders and load products etc. However, in one or two cases, the order is ...
1
vote
2answers
155 views
Can I make a keyed service for AutoFac based on the type of the Open Generic
I would like to make a keyedService based on the T for my Open Generic ICommandHandler. I would like to register a ConsultatCommandHanlder keyed service when the ICommandHandler has a T that inherits ...
0
votes
2answers
488 views
WPF: MVVM: Command vs CallMethodAction?
I'm learning the MVVM pattern with a new(small) project, and I've one question about the way to invoke actions on our controller:
I saw many tutorial where they were telling us to use Command, ...
0
votes
1answer
94 views
2 kind of command in Command Pattern
I'm developing application using Command Pattern. I have two kind of operations in my programm:
1. Long time operations (copy/delete files), which should be run asynchronously
2. Simple operations ...
2
votes
1answer
412 views
command pattern using Dependency Injection for MVC 3 controller
I read the following article .NET Junkie - Meanwhile... on the command side of my architecture which was suggested by another stackoverflow user that outlines the command pattern and provides a ...
1
vote
1answer
191 views
Command Design Pattern simple GUI null pointer
I have these classes: a JPanel extension, an interface and 3 x JmenuItem classes.
public class RedFrame extends javax.swing.JFrame implements ActionListener {
private JMenuBar jMenuBar1;
private ...
1
vote
2answers
258 views
Command Design Pattern - Is Invoker Optional?
Is Invoker class optional in Command design pattern? Client needs to instantiate Concrete Command and Receiver for the command. Does client always need to instantiate Invoker and pass on the command ...
4
votes
2answers
715 views
Command Pattern for undo/redo in paint application
I would like to implement undo/redo in a small paint application. It seems the Command Pattern fits the use nicely, but I am unsure how to best implement it.
As I understand the pattern, it is ...
5
votes
2answers
446 views
Command Pattern in .NET MVC 3 (removing junk from the controller)
I am trying to implement this Command Pattern on my .NET MVC 3 application, specifically for saving edits to a Thing. I am undecided on how to proceed. Before I get to the actual question, here is the ...
1
vote
1answer
176 views
Client Server Command Design pattern with variable delays
I am writing a client program to control a server which is in turn controlling some large hardware. The server needs to receive commands to initialize, start, stop and control the hardware.
The ...
0
votes
4answers
236 views
Mixing Command pattern, Factory pattern and templates all together …
I already asked a similar question here, however I didn't really get the answer I wanted because my question was poorly formulated and the examples were bad. So I give it another shot, with hopefully ...
0
votes
2answers
143 views
Using template template parameter on function call
Actually, all the answers are nice, and informative but they don't solve my particular problem. I don't think that's the fault of the very helpful people who replied but instead, I badly phrased my ...
2
votes
1answer
341 views
How do I write commands for an entity that's an aggregate root in one context but not in another?
I'm working on a project for a company that finds vendors to perform services for employee relocations. These services are things that movers don't have the expertise to do, like preparing a piano or ...
2
votes
4answers
295 views
iterating through list of commands to execute- which pattern?
I have written a Java program that reads in a file containing commands to execute(in a language I made up myself). The commands are read in as strings and put into an array. Now a "dispatcher"-method ...
2
votes
2answers
637 views
What is the meaning of dashed arrow in UML class diagram?
What is the meaning of the dashed arrow in a UML class diagram in general.
As an example: What is the meaning of the dashed arrow in this image (from client to ConcreteCommand):
Article: Command ...
0
votes
1answer
138 views
How to integrate the GWT command pattern with spring
I have a project where I am using the GWT command pattern to implement the RPC. Here how i can integrate the Spring with GWT. Without Spring I am able to achieve the RPC. But here i need to use Spring ...
0
votes
1answer
166 views
Isn't Command Pattern an implementation of Dependency Inversion Principle?
Command pattern has three main components: the Invoker, the Command and the Receiver. Client provides the Invoker with information required to call a particular method M on a Receiver, while it is ...
7
votes
1answer
415 views
Command pattern to pass application's activity methods?
After reading the the Avoiding memory leaks article by @RomainGuy I realized that my current Android application is plagued with the mistake of passing the application's main activity around. So ...
0
votes
0answers
305 views
How to handle Menus with WinForms, MVP and Commands
I have a WinForm based solution, being implemented using MVP.
We have Menus which should use a Command per Menu and there are other mechanism to invoke commands as well.
Now.. from a concrete ...
1
vote
1answer
387 views
Understanding ICommand implementation without MVVM
today I am trying to understand how to work with Commands.
I red a lot about commands, and I know, that most times commands are used within the MVVM pattern. Also I know, that there is a ...
1
vote
1answer
246 views
Do I use the Strategy or Command pattern for my case?
I have two algorithms that I'm implementing:
AlgorithmA which works with Vector values and
AlgorithmB which works with Matrix values
What the algorithms have in common:
Both are "summation" ...
4
votes
1answer
637 views
Interfaces for Command Pattern in Java
Is there a library out there that already provides the interfaces we need for the command pattern in Java?
For example:
public interface Func1<T,R> { public R execute(T input); }
public ...
1
vote
2answers
187 views
Is command pattern more than adapter?
According to the GoF Command Pattern UML it seems to me like ConcreteCommand just adapts Reciever to common Command (which could be) interface. I am probably hit by golden hammer, so please explain ...
0
votes
2answers
191 views
Command pattern queue ordered by time?
I'm changing some code to use the command pattern and will store command objects in a queue. The commands will need to be executed at specific times and so I will iterate over the list once per ...
1
vote
2answers
233 views
Usage of Command Pattern in Java for Saving/Loading
I am implementing a basic board game in Java and that I am having difficulty deciding the pros and cons of in solving. I am already successfully making use of the Command Pattern to enable undo ...
4
votes
1answer
888 views
Anything in Guava similar to Functional Java's Effect?
I know one of the goals of pure functional programming is to eliminate mutability, and therefore to preclude side-effects. But let's face it, Java is not a functional language even with all of the ...
0
votes
4answers
380 views
How can I use the Command Pattern in Java like I do in C++?
I was working on a game recently in C++ where I implemented the Command Pattern to manage keyboard input to control a spaceship. When instantiating all the commands, I'd pass the spaceship pointer to ...
5
votes
1answer
478 views
Progressbar C# with Command Pattern part -1
I have to implement a progressbar in EXT.NET. I have a command "Process" as in processing a transaction. I have to keep track of the total number of transactions and transactions that failed and ...
0
votes
3answers
259 views
Implementing command pattern and polymorphism
I want to implement a command pattern. I have the following:
public class State
{
public int Number { get; set; }
public void Execute(IAction action)
{
if (action.IsValid(this))
...
8
votes
3answers
3k 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 ...
1
vote
3answers
2k 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 ...
2
votes
1answer
237 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
95 views
Standalone Command Objects in WPF
Is it possible / practical to implement WPF commands as standalone objects? If so, how is this typically done? Most of the examples I see about commanding typically involve using RoutedCommand, ...
2
votes
4answers
343 views
Command pattern and complex operations in C#
I am writing a program in C# that needs to support undo/redo. For this purpose, I settled on the Command pattern; tldr, every operation that manipulates the document state must be performed by a ...
2
votes
1answer
252 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 : ...
1
vote
1answer
250 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 ...
0
votes
3answers
154 views
issues with implementing command pattern in Java
I was trying to do a simple implementation of the command patter in java. However, I am getting the following error:
java.lang.ClassNotFoundException: AddCommand
Exception in thread "main" ...



