Tagged Questions

4
votes
1answer
119 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
107 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
109 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
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
2answers
780 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
91 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
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
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 ...