Hoogle Search

Within LTS Haskell 24.52 (ghc-9.10.3)

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

  1. data XReadOpts

    hedis Database.Redis.Sentinel

    No documentation available.

  2. XReadOpts :: Maybe Integer -> Maybe Integer -> XReadOpts

    hedis Database.Redis.Sentinel

    No documentation available.

  3. data XReadResponse

    hedis Database.Redis.Sentinel

    No documentation available.

  4. XReadResponse :: ByteString -> [StreamsRecord] -> XReadResponse

    hedis Database.Redis.Sentinel

    No documentation available.

  5. defaultXreadOpts :: XReadOpts

    hedis Database.Redis.Sentinel

    Redis default XReadOpts. Equivalent to omitting all optional parameters.

    XReadOpts
    { block = Nothing -- Don't block waiting for more records
    , recordCount    = Nothing   -- no record count
    }
    

  6. xread :: RedisCtx m f => [(ByteString, ByteString)] -> m (f (Maybe [XReadResponse]))

    hedis Database.Redis.Sentinel

    No documentation available.

  7. xreadGroup :: RedisCtx m f => ByteString -> ByteString -> [(ByteString, ByteString)] -> m (f (Maybe [XReadResponse]))

    hedis Database.Redis.Sentinel

    No documentation available.

  8. xreadGroupOpts :: RedisCtx m f => ByteString -> ByteString -> [(ByteString, ByteString)] -> XReadOpts -> m (f (Maybe [XReadResponse]))

    hedis Database.Redis.Sentinel

    No documentation available.

  9. xreadOpts :: RedisCtx m f => [(ByteString, ByteString)] -> XReadOpts -> m (f (Maybe [XReadResponse]))

    hedis Database.Redis.Sentinel

    No documentation available.

  10. tryReadMVar :: MonadIO m => MVar a -> m (Maybe a)

    relude Relude.Lifted.Concurrent

    Lifted to MonadIO version of tryReadMVar.

Page 515 of many | Previous | Next