Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Send actor action probes one at a time
authorMaxwell Pirtle <maxwellpirtle@gmail.com>
Mon, 20 Feb 2023 08:41:16 +0000 (09:41 +0100)
committerMaxwell Pirtle <maxwellpirtle@gmail.com>
Mon, 20 Feb 2023 09:13:47 +0000 (10:13 +0100)
commit64de47b20e85d84061588859bbae0212bb59ccfe
tree5ab01a7c2273b4ed04c65cafdbf51e91d11d9303
parent07f196691f95ce17dcaecb68e984e93df3debb58
Send actor action probes one at a time

To avoid the scenario whereby the AppSide
delivers a message larger than the maximum
datagram side allowed by the application,
we instead send a single message for each actor.
This prevents us from needing to complicate the
sending logic in Channel.cpp, which would have
been made more complicated should we have wanted
to send variable-sized messages between the
checker and the application side
src/mc/api/RemoteApp.cpp
src/mc/remote/AppSide.cpp
src/mc/remote/Channel.cpp