Chain of Responsibility Design Pattern

Last modified on August 1st, 2014 by Joe.

Decoupling is one of the prominent mantras in software engineering. Chain of responsibility helps to decouple sender of a request and receiver of the request with some trade-offs. Chain of responsibility is a design pattern where a sender sends a request to a chain of objects, where the objects in the chain decide themselves who to honor the request. If an object in the chain decides not to serve the request, it forwards the request to the next object in the chain.

Responsibility is outsourced. In a chain of objects, the responsibility of deciding who to serve the request is left to the objects participating in the chains. It is similar to ‘passing the question in a quiz scenario’. When the quiz master asks a question to a person, if he doesn’t knows the answer, he passes the question to next person and so on. When one person answers the question, the passing flow stops. Sometimes, the passing might reach the last person and still nobody gives the answer.

Welcome to behavioral design patterns. This is the first tutorial in behavioral category of our famous design pattern series.

Highlights of Chain of Responsibility

Problems in Chain of Responsibility

There may be scenarios where a node is capable of solving the request but may not get a chance for it. Though there is a candidate who can solve the problem, but since nobody forwarded the request to it, it was not given a chance to serve and final result is the request goes unattended failure. This happens because of improper chain sequence. A chain sequence may not be suitable for all scenarios.

In object oriented design generally, every object is responsible for all its behaviour. Behaviour of an object is not transferred to other objects and is enclosed within itself. In chain of responsibility, some percentage of behaviour is offloaded to third party objects.

Chain of Responsibility Example

When thinking about nice examples for chain of responsibility pattern following list came to my mind. Coin sorting machine, ATM money dispenser, Servlet Filter and finally java’s own Exception Handling mechanism. We know exception handling better than anybody else and we are daily living with it. This qualifies as the best example for chain of responsibility.

We may have sequence of exceptions listed in catch statements and when there is an exception thrown, the catch list is scanned one by one from top. If first exception in catch can handle it the job is done, else the responsibility is moved to next in line and so on till it reaches finally block if we have one.

UML Diagram for Chain of Responsibility

Example Java Code

Following example code gives a sample implementation of chain of responsibility.

Chain.java

This is the interface that acts as a chain link.

package com.javapapers.designpattern.chainofresponsibility;

public interface Chain {

	public abstract void setNext(Chain nextInChain);
	public abstract void process(Number request);
}

Number.java

This class is the request object.

package com.javapapers.designpattern.chainofresponsibility;

public class Number {
	private int number;

	public Number(int number) {
		this.number = number;
	}

	public int getNumber() {
		return number;
	}

}

NegativeProcessor.java

This class is a link in chain series.

package com.javapapers.designpattern.chainofresponsibility;

public class NegativeProcessor implements Chain {

	private Chain nextInChain;

	public void setNext(Chain c) {
		nextInChain = c;
	}

	public void process(Number request) {
		if (request.getNumber() < 0) {
			System.out.println("NegativeProcessor : " + request.getNumber());
		} else {
			nextInChain.process(request);
		}
	}
}

ZeroProcessor.java

This class is another link in chain series.

package com.javapapers.designpattern.chainofresponsibility;

public class ZeroProcessor implements Chain {

	private Chain nextInChain;

	public void setNext(Chain c) {
		nextInChain = c;
	}

	public void process(Number request) {
		if (request.getNumber() == 0) {
			System.out.println("ZeroProcessor : " + request.getNumber());
		} else {
			nextInChain.process(request);
		}
	}
}

PositiveProcessor.java

This class is another link in chain series.

package com.javapapers.designpattern.chainofresponsibility;

public class PositiveProcessor implements Chain {

	private Chain nextInChain;

	public void setNext(Chain c) {
		nextInChain = c;
	}

	public void process(Number request) {
		if (request.getNumber() > 0) {
			System.out.println("PositiveProcessor : " + request.getNumber());
		} else {
			nextInChain.process(request);
		}
	}
}

TestChain.java

This class configures the chain of responsibility and executes it.

package com.javapapers.designpattern.chainofresponsibility;

public class TestChain {
	public static void main(String[] args) {
		//configure Chain of Responsibility
		Chain c1 = new NegativeProcessor();
		Chain c2 = new ZeroProcessor();
		Chain c3 = new PositiveProcessor();
		c1.setNext(c2);
		c2.setNext(c3);

		//calling chain of responsibility
		c1.process(new Number(99));
		c1.process(new Number(-30));
		c1.process(new Number(0));
		c1.process(new Number(100));
	}
}

Output for chain of responsibility example

PositiveProcessor : 99
NegativeProcessor : -30
ZeroProcessor : 0
PositiveProcessor : 100

Download Source Code

Chain Of Responsibility Java Source Code

Use of Chain of Responsibility in JDK

Comments on "Chain of Responsibility Design Pattern"

  1. saleem says:

    excellent and makes very easy to understand the concept, tnx a lot.

  2. Pradeep says:

    Thanks Joe for this blog…very well explained.

  3. Irshad says:

    well explained. Thank you. Did not get what logic used for Coin sorting machine, ATM money dispenser?

  4. Bharani says:

    @Irshad: Say if you want to withdraw 2200 Rs, and ATM has 1000, 500 and 100 rupee notes. As per chain of responsibility the request would be sent to object that dispenses 1000 rs note. If 1000 ruppee notes are NOT available then it would be sent to an object that dispenses 500 rs note. The 500Rs object decides to dispense 4 notes and then 100 rs object would be asked to handle the rest. Advantage is, eventhough there are no 1000 rs not avaialble, your req would be still handled by other objects like 500 and 100.

  5. Shahjahan says:

    Hi Bharani

    But in ATM when we withdraw 1000 then is in form of one 500 notes and rest are 100 note.
    here how it follow the chain rules

  6. sayeed says:

    Hi Joe,
    It would be better if you put the search box , which is right now in the bottom of the page to above on inside “Stay in touch” box. It will make more easy to search content on your page.

  7. Ajit says:

    Hi Shahjahan,
    Here ATM software has been made to implement a customized form of Chain of Responsibility for ATM user convenience. So if you were to withdraw Rs 1000, the first Rs 500 is mandated to be served by the 100 dispenser. Then the balance 500 will follow the Chain of Responsibility pattern.
    If it was not customized then you would have starved for the change and probably scold the ATM machine :)
    Hope I could clarify.

  8. Anonymous says:

    Hi Joe,

    Awesome!

    -Jacob

  9. vikas says:

    Thanks ….
    geting the clear understanding on chain of responsibility ….

  10. Bharani says:

    @Irshad: The example i’ve used it for pure illustration purpose to explain application of CoR. In reality, dispenser uses the Chain of responsiblity design pattern along with certain BUSINESS RULES in order to use the notes optimally. Infact what you have pointed out, is an advantage of CoR as it is FLEXIBLE and CUSTOMIZABLE.

  11. Sandeep says:

    Good One .. easy to understand

  12. Anonymous says:

    hi joe ,

    its really intresting ,easy, understandable iam so happy for your blog ….

  13. Mr. Ballem says:

    Could you please explain JVM “Runtime Data Areas” in a Nut Shell.

  14. Prasad says:

    could you please tell me, is there any hierarchy we need to follow for learning design patterns. like first this pattern should learn after that this one like that any hierarchy is there?

  15. Anonymous says:

    A very good article that helps me understand so obscure concept! Thanks, Joe!

  16. Hardik says:

    Very useful,

    Just little question is what is the difference between this design approach and traditional if else approach?

    Can you help me to understand it more deeply.

  17. Anonymous says:

    thanks a ton. awesome article

  18. LittlePhoenix says:

    public void process(Number request) {
    if (request.getNumber() > 0) {

    } else {
    nextInChain.process(request); ???
    }
    }

    Should we check nextInChain not null before call this ? Otherwise it shall throws NullPointerException

  19. Louftansa says:

    Super clear, Joe. Thanks, it may be useful for a problem I’m encountering!!!

  20. Pawan says:

    Just too good.

  21. Alessandra says:

    Thanks, Joe.
    Your blog will be my first source in this topic. Your explanations are very clarifying.

  22. Shubhangi says:

    Too descriptive and useful

  23. Anonymous says:

    too good continue ur explanations.

  24. Anonymous says:

    Thanks Joe..Very nice & precise description

  25. Зоран says:

    I’m impressed. Your every design pattern I perused. How about you go ahead and explain all the GoF design patterns?
    Zoran, Belgrade

  26. Anonymous says:

    pls keep behavioural patterns as soon as possible..please…

  27. Anonymous says:

    goo one !

    thanks…

    Abhrajyoti

  28. Anonymous says:

    you are cool man!!

  29. Natasha says:

    Really cool!
    Thank you So mucn!

  30. fachhoch says:

    instead of using the if statement in every chain implementation why not put create abstract and and the condition there her is what I mean

    public abstract class AbstractChain implements Chain{
    private Chain nextInChain;
    protected abstract void handle(Number number);
    protected abstract boolean canHandle(Number number);
    @Override
    public void process(Number number) {
    if(canHandle(number)){
    handle(number);
    }else {
    nextInChain.process(number);
    }

    }
    }
    I prefer to use chain like the code above this way my code is easier to read each handle method just worries about how to handle and not worry about conditions if its eligible to handle can this also be called chain of responsibility?

  31. Milind says:

    excellent, No words to say

  32. kuntal chakrabarti says:

    Excellent article… I have one question.. Is Interceptors in struts2 uses chain of responsibility design pattern?

  33. Ashish says:

    best example of Combination of
    chain of responsibility with decorator pattern.
    where responsibility is shared in a modified manner.

  34. Atul Singh Chauan says:

    excellent and very easy to understand the concept, thanks a lot.

  35. Revathy says:

    Really Superb. You made us to understand the concept of design pattern, which everyone feels difficult… Really great..

  36. Aswin says:

    awesome joe keep going

  37. Anonymous says:

    Very crisp and clear to understand the pattern

  38. shrawan says:

    very easy to understand. nice keep it up

  39. Vinuraj M V says:

    Awesome..!!! Thanks Joe..

  40. L.GANESH says:

    Nice post and quick observable. Example is best suitable for demonstration of this pattern

  41. Gajanan says:

    A very good website and Examples are really good
    Thanks

  42. Anonymous says:

    Excellent

  43. vikas says:

    Thankyou !!!

Comments are closed for "Chain of Responsibility Design Pattern".