(value: T)
| 310 | } |
| 311 | |
| 312 | async destroy(value: T) { |
| 313 | debug( |
| 314 | 'Destroying a resource for %s#%s', |
| 315 | this.context.name, |
| 316 | this.bindingAddress, |
| 317 | value, |
| 318 | ); |
| 319 | await invokePoolableMethod(value, 'stop'); |
| 320 | } |
| 321 | } |
| 322 | |
| 323 | /** |
nothing calls this directly
no test coverage detected