Beispiel #1
0
 public ResponseTransformer(IReductionRepository reductionRepository, IReducingQueue reducingQueue, HttpContextBase context, IRRConfiguration config)
 {
     this.reductionRepository = reductionRepository;
     this.reducingQueue       = reducingQueue;
     this.context             = context;
     this.config = config;
 }
Beispiel #2
0
 public DashboardHandler(IRRConfiguration config, IIpFilter ipFilter, IReducingQueue queue, IReductionRepository repo, IUriBuilder uriBuilder)
 {
     this.config     = config;
     this.ipFilter   = ipFilter;
     this.queue      = queue;
     this.repo       = repo;
     this.uriBuilder = uriBuilder;
 }
 public DashboardHandler(IRRConfiguration config, IIpFilter ipFilter, IReducingQueue queue, IReductionRepository repo, IUriBuilder uriBuilder)
 {
     this.config = config;
     this.ipFilter = ipFilter;
     this.queue = queue;
     this.repo = repo;
     this.uriBuilder = uriBuilder;
 }
 public FlushHandler(IRRConfiguration configuration, IHostingEnvironmentWrapper hostingEnvironment, IIpFilter ipFilter, IReducingQueue queue, IUriBuilder uriBuilder, IStore store)
 {
     this.configuration      = configuration;
     this.hostingEnvironment = hostingEnvironment;
     this.ipFilter           = ipFilter;
     this.queue      = queue;
     this.uriBuilder = uriBuilder;
     this.store      = store;
 }
Beispiel #5
0
 public FlushHandler(IRRConfiguration configuration, IHostingEnvironmentWrapper hostingEnvironment, IIpFilter ipFilter, IReducingQueue queue, IUriBuilder uriBuilder, IStore store)
 {
     this.configuration = configuration;
     this.hostingEnvironment = hostingEnvironment;
     this.ipFilter = ipFilter;
     this.queue = queue;
     this.uriBuilder = uriBuilder;
     this.store = store;
 }
Beispiel #6
0
 public ResponseTransformer(IReductionRepository reductionRepository, IReducingQueue reducingQueue, HttpContextBase context, IRRConfiguration config, IUriBuilder uriBuilder, IRelativeToAbsoluteUtility relativeToAbsoluteUtility)
 {
     this.reductionRepository = reductionRepository;
     this.reducingQueue       = reducingQueue;
     this.context             = context;
     this.config     = config;
     this.uriBuilder = uriBuilder;
     this.relativeToAbsoluteUtility = relativeToAbsoluteUtility;
 }
 public ResponseTransformer(IReductionRepository reductionRepository, IReducingQueue reducingQueue, HttpContextBase context)
 {
     this.reductionRepository = reductionRepository;
     this.reducingQueue = reducingQueue;
     this.context = context;
 }