(opts, handler)
| 56881 | res.push(null); |
| 56882 | } |
| 56883 | onError(err) { |
| 56884 | const { ret } = this; |
| 56885 | this.handler = null; |
| 56886 | util4.destroy(ret, err); |
| 56887 | } |
| 56888 | }; |
| 56889 | function pipeline(opts, handler) { |
| 56890 | try { |
| 56891 | const pipelineHandler = new PipelineHandler(opts, handler); |
| 56892 | this.dispatch({ ...opts, body: pipelineHandler.req }, pipelineHandler); |
| 56893 | return pipelineHandler.ret; |
| 56894 | } catch (err) { |
no test coverage detected
searching dependent graphs…