forked from haskell-distributed/distributed-process-platform
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathNOTES
More file actions
22 lines (15 loc) · 645 Bytes
/
NOTES
File metadata and controls
22 lines (15 loc) · 645 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
MAJOR TODOs (in no particular order)
- implement Observable for Mailbox
- implement PCopy / pcopy :: PCopy a -> Process () and precv :: Process (Maybe (PCopy a))
- provide InputChannel for PCopy data, i.e.:
data InputChannel a = ReadChan (ReceivePort a) | ReadSTM (STM a)
read (ReadChan rp) = expectChan rp
read (ReadSTM stm) = liftIO $ atomically stm
offer
- implement RoundRobinRouter, ContentBasedRouter
- finish off ResourcePool
- double check we're using NFSerializable where possible/necessary
- implement LocalRegistry (?)
- possibly rationalise Registry with LocalRegistry (?)
- Health checks for services
- Service Monitoring