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.
-
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.
RetryPolicy :: Maybe Duration -> Maybe Duration -> RetryPolicygogol-pubsub Gogol.PubSub No documentation available.
-
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.
RetryPolicy :: Maybe Duration -> Maybe Duration -> RetryPolicygogol-pubsub Gogol.PubSub.Types No documentation available.
throwErrnoIfMinus1Retry :: (Eq a, Num a) => String -> IO a -> IO abase 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.
throwErrnoIfMinus1RetryMayBlock :: (Eq a, Num a) => String -> IO a -> IO b -> IO abase Foreign.C.Error as throwErrnoIfMinus1Retry, but checks for operations that would block.
throwErrnoIfMinus1RetryMayBlock_ :: (Eq a, Num a) => String -> IO a -> IO b -> IO ()base Foreign.C.Error as throwErrnoIfMinus1RetryMayBlock, but discards the result.
throwErrnoIfMinus1Retry_ :: (Eq a, Num a) => String -> IO a -> IO ()base Foreign.C.Error as throwErrnoIfMinus1, but discards the result.
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.
throwErrnoIfNullRetryMayBlock :: String -> IO (Ptr a) -> IO b -> IO (Ptr a)base Foreign.C.Error as throwErrnoIfNullRetry, but checks for operations that would block.