Hoogle Search

Within LTS Haskell 24.4 (ghc-9.10.2)

Note that Stackage only displays results for the latest LTS and Nightly snapshot. Learn more.

  1. resumeRetryingDynamic :: MonadIO m => RetryStatus -> RetryPolicyM m -> (RetryStatus -> b -> m RetryAction) -> (RetryStatus -> m b) -> m b

    retry Control.Retry

    A variant of retryingDynamic that allows specifying the initial RetryStatus so that a retrying operation may pick up where it left off in regards to its retry policy.

  2. toRetryAction :: Bool -> RetryAction

    retry Control.Retry

    Convert a boolean answer to the question "Should we retry?" into a RetryAction.

  3. DontRetry :: RetryAction

    retry UnliftIO.Retry

    Don't retry (regardless of what the RetryPolicy says).

  4. defaultRetryStatus :: RetryStatus

    retry UnliftIO.Retry

    Initial, default retry status. Use fields or lenses to update.

  5. getRetryPolicyM :: RetryPolicyM (m :: Type -> Type) -> RetryStatus -> m (Maybe Int)

    retry UnliftIO.Retry

    No documentation available.

  6. natTransformRetryPolicy :: (forall a . () => m a -> n a) -> RetryPolicyM m -> RetryPolicyM n

    retry UnliftIO.Retry

    Applies a natural transformation to a policy to run a RetryPolicy meant for the monad m in the monad n provided a transformation from m to n is available. A common case is if you have a pure policy, RetryPolicyM Identity and want to use it to govern an IO computation you could write:

    purePolicyInIO :: RetryPolicyM Identity -> RetryPolicyM IO
    purePolicyInIO = natTransformRetryPolicy (pure . runIdentity)
    

  7. resumeRetrying :: MonadIO m => RetryStatus -> RetryPolicyM m -> (RetryStatus -> b -> m Bool) -> (RetryStatus -> m b) -> m b

    retry UnliftIO.Retry

    A variant of retrying that allows specifying the initial RetryStatus so that the retrying operation may pick up where it left off in regards to its retry policy.

  8. resumeRetryingDynamic :: MonadIO m => RetryStatus -> RetryPolicyM m -> (RetryStatus -> b -> m RetryAction) -> (RetryStatus -> m b) -> m b

    retry UnliftIO.Retry

    A variant of retryingDynamic that allows specifying the initial RetryStatus so that a retrying operation may pick up where it left off in regards to its retry policy.

  9. toRetryAction :: Bool -> RetryAction

    retry UnliftIO.Retry

    Convert a boolean answer to the question "Should we retry?" into a RetryAction.

  10. TlsPasswordFlagsRetry :: TlsPasswordFlags

    gi-gio GI.Gio.Flags

    The password was wrong, and the user should retry.

Page 18 of many | Previous | Next