Holumbus-Distribution-0.0.1: intra- and inter-program communicationSource codeContentsIndex
Holumbus.Network.PortRegistry.Messages
Portabilityportable
Stabilityexperimental
MaintainerStefan Schmidt (stefanschmidt@web.de)
Description

Version : 0.1

This modules defines the messages from and to the PortRegistry.

Synopsis
type PortRegistryRequestStream = Stream PortRegistryRequestMessage
type PortRegistryRequestPort = Port PortRegistryRequestMessage
type PortRegistryResponseStream = Stream PortRegistryResponseMessage
type PortRegistryResponsePort = Port PortRegistryResponseMessage
data PortRegistryRequestMessage
= PRReqRegister StreamName SocketId
| PRReqUnregister StreamName
| PRReqLookup StreamName
| PRReqGetPorts
| PRReqUnknown
data PortRegistryResponseMessage
= PRRspSuccess
| PRRspLookup (Maybe SocketId)
| PRRspGetPorts [(String, SocketId)]
| PRRspError String
| PRRspUnknown
Documentation
type PortRegistryRequestStream = Stream PortRegistryRequestMessageSource
The Stream for the messages TO the PortRegistry.
type PortRegistryRequestPort = Port PortRegistryRequestMessageSource
The Port for the messages TO the PortRegistry.
type PortRegistryResponseStream = Stream PortRegistryResponseMessageSource
The Stream for the messages FROM the PortRegistry.
type PortRegistryResponsePort = Port PortRegistryResponseMessageSource
The Port for the messages FROM the PortRegistry.
data PortRegistryRequestMessage Source
The messages TO the PortRegistry.
Constructors
PRReqRegister StreamName SocketId
PRReqUnregister StreamName
PRReqLookup StreamName
PRReqGetPorts
PRReqUnknown
show/hide Instances
data PortRegistryResponseMessage Source
The messages FROM the PortRegistry.
Constructors
PRRspSuccess
PRRspLookup (Maybe SocketId)
PRRspGetPorts [(String, SocketId)]
PRRspError String
PRRspUnknown
show/hide Instances
Produced by Haddock version 2.4.2