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. data RetryPolicy

    gogol-pubsub Gogol.PubSub

    A policy that specifies how Pub/Sub retries message delivery. Retry delay will be exponential based on provided minimum and maximum backoffs. https://en.wikipedia.org/wiki/Exponential_backoff. RetryPolicy will be triggered on NACKs or acknowledgment deadline exceeded events for a given message. Retry Policy is implemented on a best effort basis. At times, the delay between consecutive deliveries may not match the configuration. That is, delay can be more or less than configured backoff. See: newRetryPolicy smart constructor.

  2. RetryPolicy :: Maybe Duration -> Maybe Duration -> RetryPolicy

    gogol-pubsub Gogol.PubSub

    No documentation available.

  3. data RetryPolicy

    gogol-pubsub Gogol.PubSub.Types

    A policy that specifies how Pub/Sub retries message delivery. Retry delay will be exponential based on provided minimum and maximum backoffs. https://en.wikipedia.org/wiki/Exponential_backoff. RetryPolicy will be triggered on NACKs or acknowledgment deadline exceeded events for a given message. Retry Policy is implemented on a best effort basis. At times, the delay between consecutive deliveries may not match the configuration. That is, delay can be more or less than configured backoff. See: newRetryPolicy smart constructor.

  4. RetryPolicy :: Maybe Duration -> Maybe Duration -> RetryPolicy

    gogol-pubsub Gogol.PubSub.Types

    No documentation available.

  5. throwErrnoIfMinus1Retry :: (Eq a, Num a) => String -> IO a -> IO a

    base Foreign.C.Error

    Throw an IOError corresponding to the current value of getErrno if the IO action returns a result of -1, but retries in case of an interrupted operation.

  6. throwErrnoIfMinus1RetryMayBlock :: (Eq a, Num a) => String -> IO a -> IO b -> IO a

    base Foreign.C.Error

    as throwErrnoIfMinus1Retry, but checks for operations that would block.

  7. throwErrnoIfMinus1RetryMayBlock_ :: (Eq a, Num a) => String -> IO a -> IO b -> IO ()

    base Foreign.C.Error

    as throwErrnoIfMinus1RetryMayBlock, but discards the result.

  8. throwErrnoIfMinus1Retry_ :: (Eq a, Num a) => String -> IO a -> IO ()

    base Foreign.C.Error

    as throwErrnoIfMinus1, but discards the result.

  9. throwErrnoIfNullRetry :: String -> IO (Ptr a) -> IO (Ptr a)

    base Foreign.C.Error

    Throw an IOError corresponding to the current value of getErrno if the IO action returns nullPtr, but retry in case of an interrupted operation.

  10. throwErrnoIfNullRetryMayBlock :: String -> IO (Ptr a) -> IO b -> IO (Ptr a)

    base Foreign.C.Error

    as throwErrnoIfNullRetry, but checks for operations that would block.

Page 12 of many | Previous | Next