Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

52
votes
15answers
3k views

Long list of if statements in Java

Sorry I can't find a question answering this, I'm almost certain someone else has raised it before. My problem is that I'm writing some system libraries to run embedded devices. I have commands ...
12
votes
2answers
931 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 ...
7
votes
1answer
1k views

Why use the command pattern in GWT (or any web app)?

According to this video here Google is recommending the use of the Command pattern on top of its request handling API. There is also a helpful looking project gwt-dispatch that implements that ...
6
votes
1answer
642 views

Command Pattern - return a value

I'm using the command pattern for passing a command from a client to a server via a TCP/IP socket. The server will take the command object, deserialize it and then call execute() on the command ...
5
votes
3answers
88 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, ...
5
votes
2answers
608 views

What is the accepted pattern for WPF commanding in MVVM?

I'm working on a WPF app and I understand the command pattern pretty well, but I've found that there are several different implementations of the command pattern for MVVM. There's Josh Smith's ...
4
votes
1answer
120 views

Serialize a call to a function

I need to implement the concept of task in my application. In my project, the task is an operation that must be performed and is identified by a name: each task also has input parameters (types and ...
3
votes
1answer
415 views

GWT RequestFactory with Command pattern

Are you currently using the Command Pattern in combination with RequestFactory? I'd like to use it but since RequestFactory doesn't allow inheritance, I'm not sure how to do it. If anyone has been ...
3
votes
2answers
216 views

Command Pattern leading to class explosion

It seems like whenever I use the Command Pattern, it always leads to a significantly larger number of classes than when I don't use it. This seems pretty natural, given that we're executing chunks of ...
3
votes
7answers
221 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
807 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
4answers
109 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
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
1answer
130 views

Dependency Injection when using the Command Pattern

I'm using the Command Pattern for the first time. I'm a little unsure how I should handle dependencies. In the code below, we dispatch a CreateProductCommand which is then queued to be executed at a ...
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
3answers
232 views

command pattern serialization in c++

I want to do the folloing in C++: create a command object serialize it (send it to another computer) deserialize execute Two cases: sender and receiver are both win 7 computers sender is *nix ...
2
votes
1answer
212 views

DDD Command Pattern Implementation Detail - Persisting commands

I have a design where I want to be able to assign one or more command objects to an entity, which will then use these commands as part of its workflow. Something like assigning add-on features to a ...
2
votes
1answer
271 views

command pattern for this scenario? advice

good evening all. ive been reading up on the command pattern and im wondering if it's a good fit for what i want to build. essentially, i have a client that forms a socket connection with a server. ...
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
2answers
251 views

Data Entry screen updates Model objects in realtime, provides undo and redo, live updates to a model object using command pattern

The well known Command pattern is used often when you want to implement a model with Undo/Redo capabilities. I am looking for a reference implementation (example) of a simple Delphi form that ...
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
3answers
47 views

How does one differientiate wrapped layers in the command pattern that are logically named the same?

I have this interface... public interface ICheckThatDocumentExistsCommand { bool Execute( string userId, string docId ); } In the implementation, I only want to validate the two id's and, if ...
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
0answers
186 views

Calling Objective-C method from C++ using template and command pattern

I was not able to find it on stackoverflow. I have come up with this approach. Please suggest if there is any better way to do it. Code: The C++ class: struct CmdObj{ int value; ... }; ...
1
vote
3answers
98 views

OO Pattern for performing a single action

I often have the situation that I want to implement a single action, say "Backup the database". In classic structured programming, I would simply implement this as a single functions, which takes the ...
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
307 views

gwt-dispatch - command pattern alternative for GWT

Is there alternative to gwt-dispatch to be used in GWT project?
1
vote
1answer
327 views

Using different databinding sources within ListBox and ContextMenus

Here is the XAML: <ListBox ItemsSource="{Binding Documents}" BorderBrush="{x:Null}"> <ListBox.ItemTemplate> <DataTemplate> ...
1
vote
1answer
335 views

Command Pattern - parameters

I'm looking to use the command pattern in a distributed client/server environment. Essentially, the receivers 'execute' methods will need to take various parameters, however I read that each command ...
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
1answer
267 views

CGLib and serialization

What I want to do is to serialize a class that implements a command pattern so that I can run it later. In best of all worlds, I would like to serialize an anonymous class (I'm aware of the problems ...
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
5answers
134 views

Are “volatile” data bindings in Windows Forms possible?

Let's assume I'm implementing a Winforms UI where all commands adhere to the following pattern: interface ICommand { bool CanExecute { get; } void Execute(); } Buttons or menu items that ...
1
vote
1answer
768 views

How to disable Context menu in wpf?

I have two Menu items in a wpf context, I bind them with command, how do I hide context menu when both items are not available, I mean when both commands cannot be executed?
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
1answer
109 views

Where to keep gwt-dispatch classes?

Where gwt-dispatcher classes (Action, Result, Handler) should be kept? I mean it should be all in client package or maybe shared or any other combination? How do You handle this?
1
vote
2answers
746 views

MvcContrib.CommandProcessor.RulesEngine tutorial(s)

I am studying the CodeCampServer. I am confused about the ASP.NET MvcContrib.CommandProcessor.RulesEngine. Are there any tutorials about the RulesEngine of the MvcContrib? Or can anybody of you ...
1
vote
1answer
739 views

Why doesn't GWT use gwt-dispatch?

After looking into gwt-dispatch and the Google Wave I/O presentation (Best practices) (video here), I'm wondering why the official GWT release (2.0) doesn't use dispatch (ie. the command pattern) for ...
1
vote
2answers
845 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
458 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
1answer
23 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, ...
0
votes
3answers
60 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" ...
0
votes
2answers
70 views

How to bind a model property with DefaultModelBinder - ASP.NET MVC2

I have the following scenario. I have the Edit/Employee view populated with a model from an Entity Framework entity (Employee) I post from Edit/Employee to the Save/Employee controller action. The ...
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
2answers
125 views

Flex: DataGrid and the Command Pattern

I am using a command pattern, so any changes to object state need to happen within a command execution. A normal itemeditor in a DataGrid would just make its changes on the underlying bound object, ...

1 2