( runAll: (entries: NonEmptyArray<Request.Entry<A>>, key: unknown) => Effect.Effect<void, Request.Error<A>> )
| 234 | * @since 2.0.0 |
| 235 | */ |
| 236 | export const make = <A extends Request.Any>( |
| 237 | runAll: (entries: NonEmptyArray<Request.Entry<A>>, key: unknown) => Effect.Effect<void, Request.Error<A>> |
| 238 | ): RequestResolver<A> => |
| 239 | makeWith({ |
| 240 | batchKey: defaultKey, |
| 241 | delay: Effect.yieldNow, |
| 242 | collectWhile: constTrue, |
| 243 | runAll |
| 244 | }) |
| 245 | |
| 246 | /** |
| 247 | * Constructs a request resolver with the requests grouped by a calculated key. |
no test coverage detected