@hackage distributed-process-monad-control0.5.1

Orphan instances for MonadBase and MonadBaseControl.

This module only exports instances for MonadBase IO and MonadBaseControl IO for the Process monad. This is for use in conjunction with a library requiring these instances, such as the lifted-base package.

A tutorial segment regarding use of this in distributed-process applications may be found here.

example usage:

import Control.Distributed.Process.MonadBaseControl()
import Control.Concurrent.MVar.Lifted (withMVar)

processWithMVar :: MVar a -> (a -> Process b) -> Process b
processWithMvar = withMVar