RequestManager constructor
RequestManager({
- required RequestHandlerStore requestHandlerStore,
- 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;