Hoogle Search

Within LTS Haskell 24.3 (ghc-9.10.2)

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

  1. waitAndCancelReadSocketSTM :: Socket -> IO (STM (), IO ())

    network Network.Socket

    STM action to wait until the socket is ready for reading and STM action to cancel the waiting.

  2. waitAndCancelWriteSocketSTM :: Socket -> IO (STM (), IO ())

    network Network.Socket

    STM action to wait until the socket is ready for writing and STM action to cancel the waiting.

  3. waitReadSocketSTM :: Socket -> IO (STM ())

    network Network.Socket

    STM action to wait until the socket is ready for reading.

  4. waitWriteSocketSTM :: Socket -> IO (STM ())

    network Network.Socket

    STM action to wait until the socket is ready for writing.

  5. pollSTM :: Async a -> STM (Maybe (Either SomeException a))

    async Control.Concurrent.Async

    A version of poll that can be used inside an STM transaction.

  6. waitAnyCatchSTM :: [Async a] -> STM (Async a, Either SomeException a)

    async Control.Concurrent.Async

    A version of waitAnyCatch that can be used inside an STM transaction.

  7. waitAnySTM :: [Async a] -> STM (Async a, a)

    async Control.Concurrent.Async

    A version of waitAny that can be used inside an STM transaction.

  8. waitBothSTM :: Async a -> Async b -> STM (a, b)

    async Control.Concurrent.Async

    A version of waitBoth that can be used inside an STM transaction.

  9. waitCatchSTM :: Async a -> STM (Either SomeException a)

    async Control.Concurrent.Async

    A version of waitCatch that can be used inside an STM transaction.

  10. waitEitherCatchSTM :: Async a -> Async b -> STM (Either (Either SomeException a) (Either SomeException b))

    async Control.Concurrent.Async

    A version of waitEitherCatch that can be used inside an STM transaction.

Page 20 of many | Previous | Next