(opts, handler)
| 10317 | return new LegacyHandlerWrapper(handler); |
| 10318 | } |
| 10319 | dispatch(opts, handler) { |
| 10320 | if (opts.allowH2 !== false) { |
| 10321 | opts = { ...opts, allowH2: false }; |
| 10322 | } |
| 10323 | return this.#dispatcher.dispatch(opts, _Dispatcher1Wrapper.wrapHandler(handler)); |
| 10324 | } |
| 10325 | close(...args) { |
| 10326 | return this.#dispatcher.close(...args); |
| 10327 | } |
nothing calls this directly
no test coverage detected