This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public class Node {} | |
public class NodeA : Node {} | |
public class NodeB : Node {} | |
public class NodeBProcessor : Processor<NodeB> { | |
} | |
public class ProcessingDispatcher { | |
public void Dispatch(Node node) { | |
var processor = FindBestProcessorFor(node); | |
processor.Process(node); | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment