hinterface-0.1.0.0: Initial project template from stack

Safe HaskellSafe
LanguageHaskell2010

Language.Erlang.NodeState

Documentation

data NodeState p n m c Source #

Instances

Show (NodeState p n m c) Source # 

Methods

showsPrec :: Int -> NodeState p n m c -> ShowS #

show :: NodeState p n m c -> String #

showList :: [NodeState p n m c] -> ShowS #

putMailboxForPid :: Ord p => NodeState p n m c -> p -> m -> IOx () Source #

getMailboxForPid :: (Ord p, Show p) => NodeState p n m c -> p -> IOx m Source #

putMailboxForName :: Ord n => NodeState p n m c -> n -> m -> IOx () Source #

getMailboxForName :: (Ord n, Show n) => NodeState p n m c -> n -> IOx m Source #

putConnectionForNode :: Ord n => NodeState p n m c -> n -> c -> IOx () Source #

getConnectionForNode :: (Ord n, Show n) => NodeState p n m c -> n -> IOx c Source #

removeConnectionForNode :: Ord n => NodeState p n m c -> n -> IOx () Source #

getConnectedNodes :: NodeState p n m c -> IOx [(n, c)] Source #