* Represents a queued connection with timeout
| 283 | * Represents a queued connection with timeout |
| 284 | */ |
| 285 | interface QueuedConnection { |
| 286 | socket: Socket |
| 287 | clientInfo: { |
| 288 | clientAddress: string |
| 289 | clientPort: number |
| 290 | } |
| 291 | timeoutId: NodeJS.Timeout |
| 292 | } |
| 293 | |
| 294 | /** |
| 295 | * Options for creating a PGLiteSocketServer |
nothing calls this directly
no outgoing calls
no test coverage detected