()
| 299 | ) {} |
| 300 | |
| 301 | async create() { |
| 302 | debug( |
| 303 | 'Creating a resource for %s#%s', |
| 304 | this.context.name, |
| 305 | this.bindingAddress, |
| 306 | ); |
| 307 | const value = await this.context.get(this.bindingAddress); |
| 308 | await invokePoolableMethod(value, 'start'); |
| 309 | return value; |
| 310 | } |
| 311 | |
| 312 | async destroy(value: T) { |
| 313 | debug( |
nothing calls this directly
no test coverage detected