Hoogle Search
Within LTS Haskell 24.5 (ghc-9.10.2)
Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.
defRetrySettings :: RetrySettingscql-io Database.CQL.IO Default retry settings, combining defRetryHandlers with defRetryPolicy. Consistency is never reduced on retries and timeout values remain unchanged.
eagerRetryHandlers :: forall (m :: Type -> Type) . Monad m => [RetryStatus -> Handler m Bool]cql-io Database.CQL.IO The eager retry handlers permit a superset of the errors of defRetryHandlers, namely:
- Any ResponseError that is a ReadTimeout, WriteTimeout, Overloaded, Unavailable or ServerError.
- Any ConnectionError.
- Any IOException.
- Any HostError.
- Any SomeSSLException (if an SSL context is configured).
eagerRetryPolicy :: RetryPolicycql-io Database.CQL.IO The eager retry policy permits 5 retries with exponential backoff (base-2) with an initial delay of 100ms, i.e. the retries will be performed with 100ms, 200ms, 400ms, 800ms and 1.6s delay, respectively, for a maximum delay of ~3s.
eagerRetrySettings :: RetrySettingscql-io Database.CQL.IO Eager retry settings, combining eagerRetryHandlers with eagerRetryPolicy. Consistency is never reduced on retries and timeout values remain unchanged.
-
cql-io Database.CQL.IO Never retry.
-
cql-io Database.CQL.IO Set the exception handlers that decide whether a request can be retried by the client, i.e. what errors are permissible to retry. For configuring how the retries are performed, see setRetryPolicy.
setRetryPolicy :: RetryPolicy -> RetrySettings -> RetrySettingscql-io Database.CQL.IO Set the RetryPolicy to apply on retryable exceptions, which determines the number and distribution of retries over time, i.e. how retries are performed. Configuring a retry policy does not specify what errors should actually be retried. See setRetryHandlers.
setRetrySettings :: RetrySettings -> Settings -> Settingscql-io Database.CQL.IO Set the retry settings to use.
jfRetryCount :: JobFailure -> Intfaktory Faktory.JobFailure No documentation available.
joRetry :: JobOptions -> Maybe (Last Int)faktory Faktory.JobOptions No documentation available.