Design pattern consisting of a source of command objects and a series of processing objects.
0
votes
1answer
61 views
Chain of responsibility with large configs
I am using the chain of responsibility design pattern for my pipeline. One problem I discovered is that the configuration object becomes larger and larger as I add more chains. Essentially, my config ...
1
vote
1answer
210 views
Chain of Responsibility design pattern confusion
I understand the concept of Chain of Responsibility Pattern but maybe I'm wrongly using it.
I have several types of product and I have a controller that controls the interface that is displayed for ...
1
vote
2answers
197 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 ...
0
votes
1answer
59 views
Can the chain of responsibility have multiple nodes modify the request?
If I have multiple nodes that will need to modify a request, is it a good idea to still utilize the 'Chain of Responsibility' Design Pattern? Or should this pattern only be utilized when only one ...
2
votes
2answers
278 views
In what cases the Chain of Command design pattern is applicable?
Please somebody clears me up the mess in my head with these patterns:
Chain of Command
Chain of Responsibility
I've seen sites in which both are the same (examples of Chain of Command which are ...
4
votes
2answers
343 views
Chain of Responsibility [GoF] disadvantages
We need to build a solution to process sales orders. The processing is done serially: each step takes care of specific tasks: check if the client has credit, check if the required item is in stock, ...
1
vote
1answer
191 views
Design pattern for webservice should i use
I have a requirement in my project where I will have to built a webservice. This webservice will do the following things:
Accept XML format data
Return XML format data
The XML input data will have ...
5
votes
2answers
235 views
Executing Chain of Responsibility variation
I have got a pipeline of tasks which basically is a variation of chain of responsibility pattern.
A task in my pipeline looks as below
internal interface IPTask<T>
{
bool CanExecute(T ...
2
votes
1answer
226 views
Too much if-else in an Oracle procedure, Good or bad on performance?
In a procedure, I need to decide about the value of a column using many if-else conditions. The script starts with a
FOR rec IN (SELECT....) LOOP Begin
and decides on many different values the ...
3
votes
2answers
321 views
How to implement Chain of Responsibility in a testable fashion?
I'd like to implement a Chain of Responsibility pattern, taking care of the 'broken link' problem as follows:
public abstract class Handler{
private Handler m_successor;
public void ...
0
votes
1answer
26 views
Can COM be used with Chain of Responsibility Pattern
The idea is that there is a primary implementation of COM interface, which needs to handle different MIME types (MIME is just an example). Primary implementation handles several common MIME types that ...
1
vote
1answer
234 views
Java Generics: chaining together generic function object
I've been struggling with the following problem. I have a series of function objects, each with it's own input and output types defined via generic type arguments in java. I would like to arrange ...
2
votes
1answer
280 views
FxCop (/VS2010 Code Analysis), possible to flag method result as “callers responsibility now” for IDisposable?
If I write the following code:
public void Execute()
{
var stream = new MemoryStream();
...
}
then code analysis will flag this as:
Warning 1 CA2000 : Microsoft.Reliability : In ...
0
votes
3answers
187 views
Java patterns: engineering data flows for data mining tasks
I am a data miner, an as such, I spend a lot of time transforming raw data in various ways to enable consumption by predictive models. For instance, read a file in a certain format, tokenize, ...
1
vote
2answers
106 views
Is HashMap in a chain of responsibility an abuse of the pattern?
I've seen an example implementation of the CoR pattern using a HashMap as the object that is passed down the chain, possibly with new content being added to it by handlers; an outline of the code ...
1
vote
1answer
305 views
Implementing Chain of Responsibility with LinkedList
I'm having a hard time wrapping my head around this, and I'm hoping someone can help me.
I have a Chain of Responsibility class, and I'm wondering if I can (and would want to) implement it as a ...
0
votes
2answers
131 views
Would this still be considered a Chain-of-Responsiblity pattern?
I have been using a design pattern for quite some time and have been calling/referring to it as a "Chain-of-Responsibility pattern" but now I realise there are differences, and it may not be ...
0
votes
2answers
247 views
Understanding the need for struts 2 and commons chain in simple CRUD website
I have a simple CRUD website in development process, almost done. I was asked to refactor the code but this time use struts 2 and commons chain. I read a couple of sites like this but wasn't able to ...
3
votes
6answers
218 views
Design Patterns: Many Methods Share The Same First Step
Is there a design pattern that can help me avoid repeating DoThisStepFirst() in many methods?
class Program
{
static void Main(string[] args)
{
Method1();
Method2();
...
4
votes
4answers
1k views
What's the difference between “Chain of responsibility” and “Strategy” patterns?
I'm raising this question because of another question I asked here on SO some days ago.
I had to solve an specific problem, and after two replies I got, I realized two patterns can help to solve that ...
3
votes
1answer
131 views
Constructor Foo::Foo receiving a reference to Foo but not copy-constructor
Suppose i have a non-copyable class Foo,
and one of its constructors just happens to receive a reference to Foo.
class Foo
{
public:
Foo(Foo& parent) {...}
private:
void operator=(Foo); ...
2
votes
5answers
193 views
Pattern where only one handler of many should act based on specialization
I'm trying to rewrite some code to break some coupling issues and make it easier to modify in the future.
Right now, I have a static factory method in a base class that, depending on the ...
2
votes
1answer
378 views
chain of responsibility design pattern - regd
I've seen some questions on this pattern but I am trying to understand more about this design pattern in depth. Any resources in this regard, experts commentary on what scenarios they tend to use this ...
1
vote
3answers
394 views
C# - Should an object be responsible for creating a history object when it changes something like status?
This is more of an architecture/best practices question than anything else, so please feel free to add your two cents. I know i stated status in the title, but this goes for any basic property of an ...
3
votes
1answer
335 views
Chain of Responsibility and alias_method problems in Ruby
I'm trying to implement the chain of responsibility pattern in Ruby and ActiveRecord for a polymorphic object. I'm having a few problems.
Sometimes I get an error that a method is not defined when ...
0
votes
3answers
165 views
What would you like to correct and/or improve in this java implementation of Chain Of Responsibility?
package design.pattern.behavioral;
import design.pattern.behavioral.ChainOfResponsibility.*;
public class ChainOfResponsibility {
public static class Chain {
private Request[] requests = ...
0
votes
1answer
266 views
Chain of Responsibility Pattern: is it a good practice to have interdependent handlers?
I have this scenario: I have a chain of query handlers, the first is to query the cache, if the cache can't answer it or the answer is stale, then hit a database, if it can't find the answer or the ...
3
votes
3answers
2k views
C# Chain-of-responsibility with delegates
For my understanding purpose i have implemented Chain-Of-Responsibility pattern.
//Abstract Base Type
public abstract class CustomerServiceDesk
{
protected CustomerServiceDesk _nextHandler;
public ...
0
votes
1answer
823 views
Composite + Chain of Responsibility example
Can anyone give a practical example of using the design patterns Composite and Chain of Responsibility together?
Thanks
2
votes
4answers
777 views
Would this be a pipeline, a chain of responsibility, or something else?
I'm building a multiprocess architecture that seems to be a strange meld of a pipeline and a chain of responsibility. Essentially, I have a chain of handlers linked up by queues. Each handler will ...
3
votes
2answers
383 views
Patterns used in WPF
I have been getting more involved with WPF for about a year now. A lot of things are new and sometimes it is hard to get my head wrapped around it.
At the same time I am rereading the GOF Design ...
0
votes
1answer
170 views
wpf events and chain of responsibility pattern
do routed events from wpf have something in common with the chain of responsibility pattern ?
i googled for this and i don't see anyone talking about this :S, although i though that the routed events ...
2
votes
3answers
202 views
Design Pattern to allow code to be injected at certain points
I am trying to allow developers to extend my code at certain points of execution.
My specific example is a database transaction wrapper. The wrapper takes care of many details that we wanted to ...
2
votes
3answers
2k views
C# -Pipeline Style event model
In ASP.NET Web Apps , events are fired in particluar order :
for simplicity Load => validation =>postback =>rendering
Suppose I want to develop such pipeline -styled event
Example :
Event 1 [ ...
0
votes
4answers
200 views
Is this possible in PHP?
Consider the following PHP snippet:
<?php
class Is
{
function __get($key)
{
$class = __CLASS__ . '_' . $key;
if (class_exists($class) === true)
{
return ...
0
votes
2answers
216 views
How would you test something that filters complex objects
I have a persistent object with 7 pertinent fields.
The fields can hold the number of values listed here:
Field # of Possible Values
1 5
2 20
3 2
4 2
5 19
6 ...
6
votes
3answers
2k views
What are the advantages of chain-of-responsibility vs. lists of classes?
Recently, I was discussing with another programmer the best way to refactor a huge(1000 lines) method full of "if" statements.
The code is written in Java, but I guess this issue could happen in ...
18
votes
9answers
5k views
Why would I ever use a Chain of Responsibility over a Decorator?
I'm just reading up on the Chain of Responsibility pattern and I'm having trouble imagining a scenario when I would prefer its use over that of decorator.
What do you think? Does CoR have a niche ...
2
votes
2answers
679 views
How do I declare a chain of responsibility using decorators in Ninject?
I'd like to declare a chain of responsibility using decorators in Ninject.
Has anyone done that before?
Thanks.
15
votes
6answers
2k views
Replace giant switch statement with what?
I have a code that parses some template files and when it finds a placeholder, it replaces it with a value. Something like:
<html>
<head>
<title>%title%</title>
...
11
votes
2answers
579 views
What are the known “gotchas” with regards to the Chain of Responsibilty pattern?
I have been finding myself using the Chain of Responsibility pattern often (3 times is often for me) in my current project and I'm wondering if I have become a little over-enthusiastic about the ...
2
votes
8answers
313 views
Application design for processing data prior to database
I have a large collection of data in an excel file (and csv files). The data needs to be placed into a database (mysql). However, before it goes into the database it needs to be processed..for example ...