Tagged Questions

5
votes
1answer
143 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 ...
4
votes
1answer
138 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 ...
2
votes
4answers
137 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
119 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
223 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
2answers
799 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
122 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
3answers
48 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
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 ...
0
votes
3answers
79 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)) ...