RequestManager constructor

RequestManager({
  1. required RequestHandlerStore requestHandlerStore,
  2. required PipelineBehaviorStore pipelineBehaviorStore,
})

Creates a new RequestManager.

requestHandlerStore is used to store the registered RequestHandler's.

pipelineBehaviorStore is used to store the registered PipelineBehavior's.

Implementation

RequestManager({
  required RequestHandlerStore requestHandlerStore,
  required PipelineBehaviorStore pipelineBehaviorStore,
})  : _requestHandlerStore = requestHandlerStore,
      _pipelineBehaviorStore = pipelineBehaviorStore;