ipcvar-0.0.1: Simple inter-process communication through IPCVars.

Safe HaskellSafe-Inferred

Data.IPCVar.Backend

Documentation

data IPCVarBackend a Source

Constructors

Binary a => IPCVarBackend 

Fields

readValue :: IO a
 
writeValue :: a -> IO ()
 
swapValue :: a -> IO a
 
deleteValue :: IO ()
 

newtype IPCVar a Source

Constructors

IPCVar