示例#1
0
 protected PartitionProcessorBase(ChainHandler chainRoot)
 {
     if (chainRoot == null)
     {
         throw new ArgumentNullException("chainRoot");
     }
     ChainHandler = chainRoot;
 }
示例#2
0
 public PartitionProcessor(PartitionProcessorOptions processorOptions, ChainHandler chainRoot)
     : base(chainRoot)
 {
     if (processorOptions == null)
     {
         throw new ArgumentNullException("processorOptions");
     }
     _processorOptions = processorOptions;
 }
示例#3
0
 protected ChainHandler(ChainHandler nextHandler)
 {
     NextHandler = nextHandler;
 }