My objective is to have several images running (one representing one app belonging to one or more singular entity realm).
Lets say image A1, A2, A3 belongs to Alice. And image B1, B2, ��� to Bob.
They exchange messages conveying information. So the aim of the network layer is for me to keep messages synchronized betweens A(s) and B(s). I have inbox and outbox for that. This is actually quite close to the basys abstractions on LocalPeer and RemotePeer (active and passive).
So I played a bit with basys and can declare a network between A1 and B1 for instance. I wonder if I need as much network as possible connection (A1B1 A1B2 ��� but also A1A2, A1A3, A2A3, ���). Not sure how to declare network with more than 2 nodes���
network remotePeers do: [:each | each sendDataPackage: myNewLocalData]. ����
YourNetwork>> process: anExchangeData receivedFrom: aRemotePeerinboxQueue add: anExchangeData