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.

  1. defRetrySettings :: RetrySettings

    cql-io Database.CQL.IO

    Default retry settings, combining defRetryHandlers with defRetryPolicy. Consistency is never reduced on retries and timeout values remain unchanged.

  2. 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:

    Notably, these retry handlers are only safe to use for idempotent queries, or if a duplicate write has no severe consequences in the context of the application's data model.

  3. eagerRetryPolicy :: RetryPolicy

    cql-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.

  4. eagerRetrySettings :: RetrySettings

    cql-io Database.CQL.IO

    Eager retry settings, combining eagerRetryHandlers with eagerRetryPolicy. Consistency is never reduced on retries and timeout values remain unchanged.

  5. noRetry :: RetrySettings

    cql-io Database.CQL.IO

    Never retry.

  6. setRetryHandlers :: (forall (m :: Type -> Type) . Monad m => [RetryStatus -> Handler m Bool]) -> RetrySettings -> RetrySettings

    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.

  7. setRetryPolicy :: RetryPolicy -> RetrySettings -> RetrySettings

    cql-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.

  8. setRetrySettings :: RetrySettings -> Settings -> Settings

    cql-io Database.CQL.IO

    Set the retry settings to use.

  9. jfRetryCount :: JobFailure -> Int

    faktory Faktory.JobFailure

    No documentation available.

  10. joRetry :: JobOptions -> Maybe (Last Int)

    faktory Faktory.JobOptions

    No documentation available.

Page 27 of many | Previous | Next