RequestResolver20
Constructors
fromEffectconstConstructs a request resolver from an effectual function.fromEffectTaggedconstConstructs a request resolver from a list of tags paired to functions, that takes a list of requests and returns a list of results of the same size.fromFunctionconstConstructs a request resolver from a pure function.fromFunctionBatchedconstConstructs a request resolver from a pure function that takes a list of requests and returns a list of results of the same size.makeconstConstructs a request resolver with the specified method to run requests.makeGroupedconstConstructs a request resolver with the requests grouped by a calculated key.makeWithconstCreates a request resolver with fine-grained control over its behavior.neverconstCreates a request resolver that never executes requests.Models
Guards
Combinators
aroundconstWraps request resolver execution between before and after effects.batchNconstReturns a request resolver that collects at most n requests into each batch.groupedconstTransforms a request resolver by grouping requests using the specified key function.raceconstReturns a request resolver that sends each batch to both resolvers and completes with the first resolver to finish.withSpanconstAdds a tracing span to the request resolver, which will also add any span links from the request's.