()
| 144 | } |
| 145 | |
| 146 | public createChannel(): Promise<void> { |
| 147 | return new Promise(resolve => { |
| 148 | this.channel = this.client!.createChannel({ |
| 149 | json: false, |
| 150 | setup: (channel: Channel) => this.setupChannel(channel, resolve), |
| 151 | }); |
| 152 | }); |
| 153 | } |
| 154 | |
| 155 | public createClient(): AmqpConnectionManager { |
| 156 | const socketOptions = this.getOptionsProp(this.options, 'socketOptions'); |
no test coverage detected