Request21
Constructors
Models
AnytypeAlias for any Request, regardless of its success, error, or service requirements.ConstructorinterfaceThe constructor type returned by Request.of and Request.tagged.RequestinterfaceA Request<A, E, R> is a request from a data source for a value of type A that may fail with an E and have requirements of type R.VarianceinterfaceVariance marker carried by every Request.Guards
Completion
completeconstCompletes a request entry with the provided result.completeEffectconstCompletes a request entry with the result of an effect.failconstCompletes a request entry with a typed failure.failCauseconstCompletes a request entry with a failure Cause.succeedconstCompletes a request entry successfully with the supplied value.