(options: {
readonly name: string
readonly schema: Schema.Schema<A, I, R>
})
| 78 | * @category Accessors |
| 79 | */ |
| 80 | export const make = <A, I, R>(options: { |
| 81 | readonly name: string |
| 82 | readonly schema: Schema.Schema<A, I, R> |
| 83 | }): Effect.Effect<PersistedQueue<A, R>, never, PersistedQueueFactory> => |
| 84 | Effect.flatMap( |
| 85 | PersistedQueueFactory, |
| 86 | (factory) => factory.make(options) |
| 87 | ) |
| 88 | |
| 89 | /** |
| 90 | * @since 1.0.0 |
nothing calls this directly
no test coverage detected
searching dependent graphs…