managed-1.0.5: A monad for managed values

Safe HaskellSafe
LanguageHaskell98

Control.Monad.Managed.Safe

Contents

Description

This module is a safer subset of Control.Monad.Managed that only lets you unwrap the Managed type using runManaged. This enforces that you never leak acquired resources from a Managed computation.

In general, you should strive to propagate the Managed type as much as possible and use runManaged when you are done with acquired resources. However, there are legitimate circumstances where you want to return a value other than acquired resource from the bracketed computation, which requires using with.

This module is not the default because you can also use the Managed type for callback-based code that is completely unrelated to resources.

Synopsis

Managed

class MonadIO m => MonadManaged m where Source

You can embed a Managed action within any Monad that implements MonadManaged by using the using function

All instances must obey the following two laws:

using (return x) = return x

using (m >>= f) = using m >>= \x -> using (f x)

Methods

using :: Managed a -> m a Source

managed :: (forall r. (a -> IO r) -> IO r) -> Managed a Source

Build a Managed value

managed_ :: (forall r. IO r -> IO r) -> Managed () Source

Like managed but for resource-less operations.

runManaged :: Managed () -> IO () Source

Run a Managed computation, enforcing that no acquired resources leak

Re-exports