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. threadWaitReadSTM :: Fd -> IO (STM (), IO ())

    base Control.Concurrent

    Returns an STM action that can be used to wait for data to read from a file descriptor. The second returned value is an IO action that can be used to deregister interest in the file descriptor.

  2. threadWaitWriteSTM :: Fd -> IO (STM (), IO ())

    base Control.Concurrent

    Returns an STM action that can be used to wait until data can be written to a file descriptor. The second returned value is an IO action that can be used to deregister interest in the file descriptor.

  3. data BlockedIndefinitelyOnSTM

    base Control.Exception

    The thread is waiting to retry an STM transaction, but there are no other references to any TVars involved, so it can't ever continue.

  4. BlockedIndefinitelyOnSTM :: BlockedIndefinitelyOnSTM

    base Control.Exception

    No documentation available.

  5. data BlockedIndefinitelyOnSTM

    base Control.Exception.Base

    The thread is waiting to retry an STM transaction, but there are no other references to any TVars involved, so it can't ever continue.

  6. BlockedIndefinitelyOnSTM :: BlockedIndefinitelyOnSTM

    base Control.Exception.Base

    No documentation available.

  7. data FormatAdjustment

    base Text.Printf

    Whether to left-adjust or zero-pad a field. These are mutually exclusive, with LeftAdjust taking precedence.

  8. BlockedOnSTM :: BlockReason

    base GHC.Conc

    blocked in retry in an STM transaction

  9. catchSTM :: Exception e => STM a -> (e -> STM a) -> STM a

    base GHC.Conc

    Exception handling within STM actions. catchSTM m f catches any exception thrown by m using throwSTM, using the function f to handle the exception. If an exception is thrown, any changes made by m are rolled back, but changes prior to m persist.

  10. threadWaitReadSTM :: Fd -> IO (STM (), IO ())

    base GHC.Conc

    Returns an STM action that can be used to wait for data to read from a file descriptor. The second returned value is an IO action that can be used to deregister interest in the file descriptor.

Page 16 of many | Previous | Next