(options?: {
readonly tableName?: string | undefined
readonly pollInterval?: Duration.DurationInput | undefined
readonly lockRefreshInterval?: Duration.DurationInput | undefined
readonly lockExpiration?: Duration.DurationInput | undefined
})
| 445 | * @category layers |
| 446 | */ |
| 447 | export const layerStore = (options?: { |
| 448 | readonly tableName?: string | undefined |
| 449 | readonly pollInterval?: Duration.DurationInput | undefined |
| 450 | readonly lockRefreshInterval?: Duration.DurationInput | undefined |
| 451 | readonly lockExpiration?: Duration.DurationInput | undefined |
| 452 | }): Layer.Layer< |
| 453 | PersistedQueue.PersistedQueueStore, |
| 454 | SqlError, |
| 455 | SqlClient.SqlClient |
| 456 | > => Layer.scoped(PersistedQueue.PersistedQueueStore, make(options)) |
nothing calls this directly
no test coverage detected
searching dependent graphs…